Projects
Factory:RISC-V:LXDE
libfm
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 4
View file
_service:tar_scm:libfm.spec
Changed
@@ -4,38 +4,37 @@ %undefine _changelog_trimtime Name: libfm -Version: 1.3.1 +Version: 1.3.2 Release: 1 Summary: GIO-based library for file manager-like programs - License: GPLv2+ URL: http://pcmanfm.sourceforge.net/ - Source0: http://downloads.sourceforge.net/pcmanfm/%{name}-%{version}.tar.xz Source1: https://raw.githubusercontent.com/lxde/libfm/master/autogen.sh Source10: create-libfm-git-bare-tarball.sh +Patch1: libfm-1.3.2-0001-fm_config_load_from_key_file-don-t-replace-string-va.patch Patch1000: libfm-1.3.0.2-moduledir-gtkspecific-v03.patch BuildRequires: libexif-devel BuildRequires: gtk3-devel -BuildRequires: gtk2-devel +BuildRequires: gtk2-devel +BuildRequires: glib2-devel + +BuildRequires: pkgconfig(pango) +BuildRequires: pkgconfig(cairo) %if ! 0%{?bootstrap} BuildRequires: menu-cache-devel >= 0.3.2 %endif +BuildRequires: gcc BuildRequires: gettext BuildRequires: intltool BuildRequires: desktop-file-utils - BuildRequires: gtk-doc BuildRequires: libxslt - BuildRequires: dbus-glib-devel - BuildRequires: vala - -# Patch1000 needs the below anyway BuildRequires: automake BuildRequires: libtool BuildRequires: git @@ -44,7 +43,6 @@ Obsoletes: %{name}-devel-docs < 0.1.15 %endif - %description LibFM is a GIO-based library used to develop file manager-like programs. It is developed as the core of next generation PCManFM and takes care of all file- @@ -54,7 +52,6 @@ This package contains the generic non-gui functions of libfm. - %package gtk Summary: File manager-related GTK+ widgets of %{name} Requires: %{name}%{?_isa} = %{version}-%{release} @@ -94,7 +91,6 @@ This package contains some GTK+ related utility files for %{name}. - %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} @@ -103,7 +99,6 @@ The %{name}-devel package contains libraries and header files for developing applications that use %{name}. - %package gtk-devel-common Summary: Common Development files for %{name}-gtk Requires: %{name}-devel = %{version}-%{release} @@ -113,7 +108,6 @@ The %{name}-gtk-devel package contains common header files for developing applications that use %{name}-gtk. - %package gtk-devel Summary: Development files for %{name}-gtk Requires: %{name}-gtk%{?_isa} = %{version}-%{release} @@ -138,7 +132,6 @@ %description devel-docs This package containg development documentation files for %{name}. - %prep %setup -q -n %{name}-%{version}%{?prever} cp -a %{SOURCE1} . @@ -335,5 +328,8 @@ %endif %changelog +* Mon Jan 02 2023 lin zhang <lin.zhang@turbolinux.com.cn> - 1.3.2-1 +- update to 1.3.2 + * Tue Aug 3 2021 chainsx <chainsx@isrc.iscas.ac.cn> - 1.3.1-1 - Initial openEuler package
View file
_service:tar_scm:libfm-1.3.2-0001-fm_config_load_from_key_file-don-t-replace-string-va.patch
Added
@@ -0,0 +1,91 @@ +From 1789c96ae73720ef001249d2085553102043aee3 Mon Sep 17 00:00:00 2001 +From: Mamoru TASAKA <mtasaka@fedoraproject.org> +Date: Thu, 28 Oct 2021 22:07:14 +0900 +Subject: PATCH fm_config_load_from_key_file: don't replace string value when + loaded config file does not have such key + +For example, fm_config_load_from_file() loads every key file with path +ending with "/libfm/libfm.conf" under XDG_CONFIG_DIRS using fm_config_load_from_key_file(). + +With current fm_config_load_from_key_file() implementation, every time it is called, +for key having string, firstly the old value is always free'ed, and the new value is +read and set, even if the new value is empty. +So if system wide key file contains a key with string value but user-specific key file +does not contain the key, system widely set key value is lost, which is unwilling. + +For other value types (such as bool or int), the corresponding fm_key_file_get_TYPE +function are used, and these functions replace old values when the new config file +actually has the corresponding key. + +With this patch, similar to other value types, string value is to be replaced +only when new loaded config actually has corresponding key. +Also, implement fm_key_file_get_string() to be consistent with other types. +--- + src/base/fm-config.c | 30 ++++++++++++++++++------------ + 1 file changed, 18 insertions(+), 12 deletions(-) + +diff --git a/src/base/fm-config.c b/src/base/fm-config.c +index a633857..1e3d3f7 100644 +--- a/src/base/fm-config.c ++++ b/src/base/fm-config.c +@@ -245,6 +245,19 @@ static void _parse_drop_default_action(GKeyFile *kf, gint *action) + } + } + ++static gboolean fm_key_file_get_string(GKeyFile* kf, const char* grp, const char* key, char** val) ++{ ++ char* str_key_new = g_key_file_get_string(kf, grp, key, NULL); ++ if(G_LIKELY(str_key_new)) ++ { ++ if (*val) ++ g_free(*val); ++ *val = str_key_new; ++ } ++ return str_key_new != NULL; ++} ++ ++ + /** + * fm_config_load_from_key_file + * @cfg: pointer to configuration +@@ -263,12 +276,8 @@ void fm_config_load_from_key_file(FmConfig* cfg, GKeyFile* kf) + fm_key_file_get_int(kf, "config", "auto_selection_delay", &cfg->auto_selection_delay); + fm_key_file_get_bool(kf, "config", "confirm_del", &cfg->confirm_del); + fm_key_file_get_bool(kf, "config", "confirm_trash", &cfg->confirm_trash); +- if(cfg->terminal) +- g_free(cfg->terminal); +- cfg->terminal = g_key_file_get_string(kf, "config", "terminal", NULL); +- if(cfg->archiver) +- g_free(cfg->archiver); +- cfg->archiver = g_key_file_get_string(kf, "config", "archiver", NULL); ++ fm_key_file_get_string(kf, "config", "terminal", &cfg->terminal); ++ fm_key_file_get_string(kf, "config", "archiver", &cfg->archiver); + fm_key_file_get_bool(kf, "config", "thumbnail_local", &cfg->thumbnail_local); + fm_key_file_get_int(kf, "config", "thumbnail_max", &cfg->thumbnail_max); + fm_key_file_get_bool(kf, "config", "advanced_mode", &cfg->advanced_mode); +@@ -285,8 +294,7 @@ void fm_config_load_from_key_file(FmConfig* cfg, GKeyFile* kf) + fm_key_file_get_bool(kf, "config", "defer_content_test", &cfg->defer_content_test); + fm_key_file_get_bool(kf, "config", "quick_exec", &cfg->quick_exec); + fm_key_file_get_bool(kf, "config", "smart_desktop_autodrop", &cfg->smart_desktop_autodrop); +- g_free(cfg->format_cmd); +- cfg->format_cmd = g_key_file_get_string(kf, "config", "format_cmd", NULL); ++ fm_key_file_get_string(kf, "config", "format_cmd", &cfg->format_cmd); + /* append blacklist */ + strv = g_key_file_get_string_list(kf, "config", "modules_blacklist", NULL, NULL); + fm_strcatv(&cfg->modules_blacklist, strv); +@@ -305,10 +313,8 @@ void fm_config_load_from_key_file(FmConfig* cfg, GKeyFile* kf) + fm_key_file_get_int(kf, "ui", "thumbnail_size", &cfg->thumbnail_size); + fm_key_file_get_bool(kf, "ui", "show_thumbnail", &cfg->show_thumbnail); + fm_key_file_get_bool(kf, "ui", "shadow_hidden", &cfg->shadow_hidden); +- g_free(cfg->list_view_size_units); +- cfg->list_view_size_units = g_key_file_get_string(kf, "ui", "list_view_size_units", NULL); +- g_free(cfg->saved_search); +- cfg->saved_search = g_key_file_get_string(kf, "ui", "saved_search", NULL); ++ fm_key_file_get_string(kf, "ui", "list_view_size_units", &cfg->list_view_size_units); ++ fm_key_file_get_string(kf, "ui", "saved_search", &cfg->saved_search); + + fm_key_file_get_bool(kf, "places", "places_home", &cfg->places_home); + fm_key_file_get_bool(kf, "places", "places_desktop", &cfg->places_desktop); +-- +2.33.1 +
View file
_service:tar_scm:create-libfm-git-bare-tarball.sh
Changed
@@ -18,6 +18,10 @@ git clone --mirror $GITURL tar czf ${TARNAME} ${REPONAME}.git/ +pushd ${REPONAME}.git/ +git log --format=fuller | head -n 12 +popd + cp -p ${TARNAME} $PWDDIR popd rm -rf $TMPDIR
View file
_service:tar_scm:libfm-1.3.1.tar.xz/AUTHORS -> _service:tar_scm:libfm-1.3.2.tar.xz/AUTHORS
Changed
@@ -34,5 +34,9 @@ Tsu Jan <tsujan2000@gmail.com> Nathan Osman <nathan@quickmediasolutions.com> Nikita Sirgienko <warquark@gmail.com> +Mahmoud Al-Qudsi <mqudsi@neosmart.net> +Simon Long <simon@raspberrypi.org> +wb9688 <wb9688@users.noreply.github.com> +Ingo Brückl <ib@wupperonline.de> Also big thanks to our great translation team.
View file
_service:tar_scm:libfm-1.3.1.tar.xz/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# 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, @@ -187,9 +187,9 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - cscope distdir dist dist-all distcheck -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ - $(LISP)config.h.in + 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. @@ -253,6 +253,8 @@ GZIP_ENV = --best DIST_ARCHIVES = $(distdir).tar.xz DIST_TARGETS = dist-xz +# Exists only to be overridden by the user if desired. +AM_DISTCHECK_DVI_TARGET = dvi distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' @@ -490,8 +492,8 @@ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(top_srcdir)/Makefile.decl $(am__empty): @@ -663,7 +665,10 @@ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/.^$$\\*/\\\\&/g'`; \ @@ -728,7 +733,7 @@ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir @@ -742,6 +747,10 @@ 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 @@ -753,7 +762,7 @@ @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 - shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir @@ -771,7 +780,7 @@ distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ @@ -781,9 +790,11 @@ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + 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) @@ -799,7 +810,7 @@ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ @@ -965,8 +976,8 @@ am--refresh check check-am check-local 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 distcheck distclean \ - distclean-generic distclean-hdr distclean-libtool \ + 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 \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/NEWS -> _service:tar_scm:libfm-1.3.2.tar.xz/NEWS
Changed
@@ -1,3 +1,30 @@ +Changes on 1.3.2 since 1.3.1: + +* Fixed all/allfiles parse conditions in FmAction, it was inverted. + +* Fixed 'SelectionCount' condition parsing in FmAction if '=' was used. + +* Fix memory access error if home path == desktop path. + +* Added treating /usr/local/share/ as trusted for *.desktop files. + +* Fixed value for amount of data transferred in progress dialog. + +* Fixed preferred height in fm-cell-renderer-text. + +* Fixed search_window immediately disappearing on Wayland. + +* Changed thumbnails placement according to the XDG Base Directory + Specification. + +* Changed xarchiver command invocation to create archive. It was incompatibly + changed by the author in 2017. + +* Don't set $DISPLAY for spawned process, let it be inherited from parent. + +* Fixed memory leak on sn_id in fm-action.c. + + Changes on 1.3.1 since 1.3.0.2: * Fixed crash on reload while directory changes (folder might be not ready yet).
View file
_service:tar_scm:libfm-1.3.1.tar.xz/aclocal.m4 -> _service:tar_scm:libfm-1.3.2.tar.xz/aclocal.m4
Changed
@@ -1,6 +1,6 @@ -# generated automatically by aclocal 1.15 -*- Autoconf -*- +# generated automatically by aclocal 1.16.3 -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# 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, @@ -766,7 +766,7 @@ AS_VAR_IF($1, "", $5, $4)dnl )dnl PKG_CHECK_VAR -# Copyright (C) 2002-2014 Free Software Foundation, Inc. +# 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, @@ -778,10 +778,10 @@ # 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.15' +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.15, , +m4_if($1, 1.16.3, , AC_FATAL(Do not call $0, use AM_INIT_AUTOMAKE($1).))dnl ) @@ -797,12 +797,12 @@ # 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.15)dnl +AM_AUTOMAKE_VERSION(1.16.3)dnl m4_ifndef(AC_AUTOCONF_VERSION, m4_copy(m4_PACKAGE_VERSION, AC_AUTOCONF_VERSION))dnl _AM_AUTOCONF_VERSION(m4_defn(AC_AUTOCONF_VERSION))) -# Copyright (C) 2011-2014 Free Software Foundation, Inc. +# Copyright (C) 2011-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -864,7 +864,7 @@ # AM_AUX_DIR_EXPAND -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# 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, @@ -916,7 +916,7 @@ # AM_COND_IF -*- Autoconf -*- -# Copyright (C) 2008-2014 Free Software Foundation, Inc. +# 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, @@ -953,7 +953,7 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997-2014 Free Software Foundation, Inc. +# 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, @@ -984,7 +984,7 @@ Usually this means the macro was only invoked conditionally.) fi)) -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# 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, @@ -1175,13 +1175,12 @@ # Generate code to set up dependency tracking. -*- Autoconf -*- -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# 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, @@ -1189,49 +1188,43 @@ # 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. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac + # 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 - for mf + # 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. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named 'Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line + 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. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`AS_DIRNAME("$mf")` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running 'make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "$am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`AS_DIRNAME("$file")` - AS_MKDIR_P($dirpart/$fdir) - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done + 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 @@ -1240,18 +1233,17 @@ # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # -# This code is only required when automatic dependency tracking -# is enabled. FIXME. This creates each '.P' file that we will -# need in order to bootstrap the dependency handling code. +# 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" ac_aux_dir="$ac_aux_dir") -) + AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}")) # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# 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, @@ -1338,8 +1330,8 @@ 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: -# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> -# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> +# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> +# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> AC_SUBST(mkdir_p, '$(MKDIR_P)') # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. @@ -1406,7 +1398,7 @@ 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: <http://www.gnu.org/software/coreutils/>. +that behaves properly: <https://www.gnu.org/software/coreutils/>. If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM @@ -1448,7 +1440,7 @@ done echo "timestamp for $_am_arg" >`AS_DIRNAME("$_am_arg")`/stamp-h$_am_stamp_count) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# 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, @@ -1469,7 +1461,7 @@ fi AC_SUBST(install_sh)) -# Copyright (C) 2003-2014 Free Software Foundation, Inc. +# 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, @@ -1490,7 +1482,7 @@ # Check to see how 'make' treats includes. -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# 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, @@ -1498,49 +1490,42 @@ # AM_MAKE_INCLUDE() # ----------------- -# Check to see how make treats includes. +# 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, -am_make=${MAKE-make} -cat > confinc << 'END' +AC_MSG_CHECKING(whether ${MAKE-make} supports the include directive) +cat > confinc.mk << 'END' am__doit: - @echo this is the am__doit target + @echo this is the am__doit target >confinc.out .PHONY: am__doit END -# If we don't find an include directive, just comment out the code. -AC_MSG_CHECKING(for style of include used by $am_make) am__include="#" am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from 'make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD - ;; - esac -fi -AC_SUBST(am__include) -AC_SUBST(am__quote) -AC_MSG_RESULT($_am_result) -rm -f confinc confmf -) +# 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-2014 Free Software Foundation, Inc. +# 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, @@ -1561,12 +1546,7 @@ 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 + MISSING="\${SHELL} '$am_aux_dir/missing'" fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then @@ -1579,7 +1559,7 @@ # Helper functions for option handling. -*- Autoconf -*- -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# 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, @@ -1608,7 +1588,7 @@ AC_DEFUN(_AM_IF_OPTION, m4_ifset(_AM_MANGLE_OPTION($1), $2, $3)) -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# 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, @@ -1655,7 +1635,7 @@ # For backward compatibility. AC_DEFUN_ONCE(AM_PROG_CC_C_O, AC_REQUIRE(AC_PROG_CC)) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# 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, @@ -1674,7 +1654,7 @@ # Check to make sure that the build environment is sane. -*- Autoconf -*- -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# 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, @@ -1755,7 +1735,7 @@ rm -f conftest.file ) -# Copyright (C) 2009-2014 Free Software Foundation, Inc. +# 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, @@ -1815,7 +1795,7 @@ _AM_SUBST_NOTMAKE(AM_BACKSLASH)dnl ) -# Copyright (C) 2001-2014 Free Software Foundation, Inc. +# 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, @@ -1843,7 +1823,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST(INSTALL_STRIP_PROGRAM)) -# Copyright (C) 2006-2014 Free Software Foundation, Inc. +# 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, @@ -1862,7 +1842,7 @@ # Check how to create a tarball. -*- Autoconf -*- -# Copyright (C) 2004-2014 Free Software Foundation, Inc. +# 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, @@ -1995,29 +1975,31 @@ # Autoconf support for the Vala compiler -# Copyright (C) 2008-2014 Free Software Foundation, Inc. +# 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. -# Check whether the Vala compiler exists in $PATH. If it is found, the -# variable VALAC is set pointing to its absolute path. Otherwise, it is -# simply set to 'valac'. -# Optionally a minimum release number of the compiler can be requested. -# If the ACTION-IF-FOUND parameter is given, it will be run if a proper -# Vala compiler is found. -# Similarly, if the ACTION-IF-FOUND is given, it will be run if no proper -# Vala compiler is found. It defaults to simply print a warning about the -# situation, but otherwise proceeding with the configuration. +# Search for a Vala compiler in PATH. If it is found, the variable VALAC is +# set to point to it. Otherwise, it is simply set to 'valac'. This macro +# takes three optional arguments. The first argument, if present, is the +# minimum version of the Vala API required to compile this package. For Vala +# releases, this is the same as the major and minor release number; e.g., when +# `valac --version' reports 0.48.7, `valac --api-version' reports 0.48. If a +# compiler is found and satisfies MINIMUM-VERSION, then ACTION-IF-FOUND is run +# (this defaults to do nothing). Otherwise, ACTION-IF-NOT-FOUND is run. If +# ACTION-IF-NOT-FOUND is not specified, the default value is to print a +# warning in case no compiler is found, or if a too-old version of the +# compiler is found. # # AM_PROG_VALAC(MINIMUM-VERSION, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND) # -------------------------------------------------------------------------- AC_DEFUN(AM_PROG_VALAC, AC_PATH_PROG(VALAC, valac, valac) AS_IF(test "$VALAC" != valac && test -n "$1", - AC_MSG_CHECKING(whether $VALAC is at least version $1) - am__vala_version=`$VALAC --version | sed 's/Vala *//'` + AC_MSG_CHECKING(whether $VALAC supports at least API version $1) + am__vala_version=`$VALAC --api-version` AS_VERSION_COMPARE($1, "$am__vala_version", AC_MSG_RESULT(yes), AC_MSG_RESULT(yes), @@ -2025,8 +2007,8 @@ VALAC=valac)) if test "$VALAC" = valac; then m4_default($3, - AC_MSG_WARN(no proper vala compiler found) - AC_MSG_WARN(you will not be able to compile vala source files)) + AC_MSG_WARN(Vala compiler not found or too old) + AC_MSG_WARN(you will not be able to compile Vala source files)) else m4_default($2, :) fi)
View file
_service:tar_scm:libfm-1.3.1.tar.xz/compile -> _service:tar_scm:libfm-1.3.2.tar.xz/compile
Changed
@@ -1,9 +1,9 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2012-10-14.11; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2020 Free Software Foundation, Inc. # Written by Tom Tromey <tromey@cygnus.com>. # # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with this program. If not, see <https://www.gnu.org/licenses/>. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -53,7 +53,7 @@ MINGW*) file_conv=mingw ;; - CYGWIN*) + CYGWIN* | MSYS*) file_conv=cygwin ;; *) @@ -67,7 +67,7 @@ mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; - cygwin/*) + cygwin/* | msys/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) @@ -255,7 +255,8 @@ echo "compile $scriptversion" exit $? ;; - cl | */\\cl | cl.exe | */\\cl.exe ) + cl | */\\cl | cl.exe | */\\cl.exe | \ + icl | */\\icl | icl.exe | */\\icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac @@ -339,9 +340,9 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End:
View file
_service:tar_scm:libfm-1.3.1.tar.xz/configure -> _service:tar_scm:libfm-1.3.2.tar.xz/configure
Changed
@@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for libfm 1.3.1. +# Generated by GNU Autoconf 2.69 for libfm 1.3.2. # # Report bugs to <http://pcmanfm.sourceforge.net/>. # @@ -650,8 +650,8 @@ # Identity of this package. PACKAGE_NAME='libfm' PACKAGE_TARNAME='libfm' -PACKAGE_VERSION='1.3.1' -PACKAGE_STRING='libfm 1.3.1' +PACKAGE_VERSION='1.3.2' +PACKAGE_STRING='libfm 1.3.2' PACKAGE_BUGREPORT='http://pcmanfm.sourceforge.net/' PACKAGE_URL='' @@ -838,7 +838,6 @@ AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE -am__quote am__include DEPDIR OBJEXT @@ -915,7 +914,8 @@ PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR -SHELL' +SHELL +am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking @@ -1520,7 +1520,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures libfm 1.3.1 to adapt to many kinds of systems. +\`configure' configures libfm 1.3.2 to adapt to many kinds of systems. Usage: $0 OPTION... VAR=VALUE... @@ -1591,7 +1591,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of libfm 1.3.1:";; + short | recursive ) echo "Configuration of libfm 1.3.2:";; esac cat <<\_ACEOF @@ -1743,7 +1743,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -libfm configure 1.3.1 +libfm configure 1.3.2 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2158,7 +2158,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by libfm $as_me 1.3.1, which was +It was created by libfm $as_me 1.3.2, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2506,7 +2506,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -am__api_version='1.15' +am__api_version='1.16' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do @@ -2711,12 +2711,7 @@ 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 + MISSING="\${SHELL} '$am_aux_dir/missing'" fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then @@ -3021,7 +3016,7 @@ # Define the identity of the package. PACKAGE='libfm' - VERSION='1.3.1' + VERSION='1.3.2' cat >>confdefs.h <<_ACEOF @@ -3051,8 +3046,8 @@ # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: -# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> -# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> +# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> +# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The @@ -3103,7 +3098,7 @@ 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: <http://www.gnu.org/software/coreutils/>. +that behaves properly: <https://www.gnu.org/software/coreutils/>. If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM @@ -3165,45 +3160,45 @@ ac_config_commands="$ac_config_commands depfiles" - -am_make=${MAKE-make} -cat > confinc << 'END' +{ $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 + @echo this is the am__doit target >confinc.out .PHONY: am__doit END -# If we don't find an include directive, just comment out the code. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 -$as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# Ignore all kinds of additional output from 'make'. -case `$am_make -s -f confmf 2> /dev/null` in #( -*the\ am__doit\ target*) - am__include=include - am__quote= - _am_result=GNU - ;; -esac -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - case `$am_make -s -f confmf 2> /dev/null` in #( - *the\ am__doit\ target*) - am__include=.include - am__quote="\"" - _am_result=BSD +# 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 -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 -$as_echo "$_am_result" >&6; } -rm -f confinc confmf +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 : @@ -13261,9 +13256,9 @@ if test "$VALAC" != valac && test -n ""; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $VALAC is at least version " >&5 -$as_echo_n "checking whether $VALAC is at least version ... " >&6; } - am__vala_version=`$VALAC --version | sed 's/Vala *//'` + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $VALAC supports at least API version " >&5 +$as_echo_n "checking whether $VALAC supports at least API version ... " >&6; } + am__vala_version=`$VALAC --api-version` as_arg_v1= as_arg_v2="$am__vala_version" awk "$as_awk_strverscmp" v1="$as_arg_v1" v2="$as_arg_v2" /dev/null @@ -13283,10 +13278,10 @@ esac fi if test "$VALAC" = valac; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: no proper vala compiler found" >&5 -$as_echo "$as_me: WARNING: no proper vala compiler found" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: you will not be able to compile vala source files" >&5 -$as_echo "$as_me: WARNING: you will not be able to compile vala source files" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Vala compiler not found or too old" >&5 +$as_echo "$as_me: WARNING: Vala compiler not found or too old" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: you will not be able to compile Vala source files" >&5 +$as_echo "$as_me: WARNING: you will not be able to compile Vala source files" >&2;} else : fi @@ -13333,9 +13328,9 @@ if test "$VALAC" != valac && test -n "0.13.0"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $VALAC is at least version 0.13.0" >&5 -$as_echo_n "checking whether $VALAC is at least version 0.13.0... " >&6; } - am__vala_version=`$VALAC --version | sed 's/Vala *//'` + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $VALAC supports at least API version 0.13.0" >&5 +$as_echo_n "checking whether $VALAC supports at least API version 0.13.0... " >&6; } + am__vala_version=`$VALAC --api-version` as_arg_v1=0.13.0 as_arg_v2="$am__vala_version" awk "$as_awk_strverscmp" v1="$as_arg_v1" v2="$as_arg_v2" /dev/null @@ -13355,10 +13350,10 @@ esac fi if test "$VALAC" = valac; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: no proper vala compiler found" >&5 -$as_echo "$as_me: WARNING: no proper vala compiler found" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: you will not be able to compile vala source files" >&5 -$as_echo "$as_me: WARNING: you will not be able to compile vala source files" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Vala compiler not found or too old" >&5 +$as_echo "$as_me: WARNING: Vala compiler not found or too old" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: you will not be able to compile Vala source files" >&5 +$as_echo "$as_me: WARNING: you will not be able to compile Vala source files" >&2;} else : fi @@ -16793,7 +16788,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by libfm $as_me 1.3.1, which was +This file was extended by libfm $as_me 1.3.2, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -16859,7 +16854,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/\\""\`\$/\\\\&/g'`" ac_cs_version="\\ -libfm config.status 1.3.1 +libfm config.status 1.3.2 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" @@ -16978,7 +16973,7 @@ # # INIT-COMMANDS # -AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" +AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" # The HP-UX ksh and POSIX shell print the target directory to stdout @@ -17895,29 +17890,35 @@ # 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. - case $CONFIG_FILES in - *\'*) eval set x "$CONFIG_FILES" ;; - *) set x $CONFIG_FILES ;; - esac + # 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 - for mf + # 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. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named 'Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line + 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. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || -$as_expr X"$mf" : 'X\(.*^/\)//*^/^/*/*$' \| \ - X"$mf" : 'X\(//\)^/' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$mf" | + 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 @@ -17935,53 +17936,50 @@ q } s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running 'make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "$am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || -$as_expr X"$file" : 'X\(.*^/\)//*^/^/*/*$' \| \ - X"$file" : 'X\(//\)^/' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$file" | - sed '/^X\(.*^/\)\/\/*^/^/*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)^/.*/{ + 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\(\/\/\)$/{ + /^X\/\(\/\/\)$/{ s//\1/ q } - /^X\(\/\).*/{ + /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` - as_dir=$dirpart/$fdir; as_fn_mkdir_p - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done + { 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)
View file
_service:tar_scm:libfm-1.3.1.tar.xz/configure.ac -> _service:tar_scm:libfm-1.3.2.tar.xz/configure.ac
Changed
@@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.63) -AC_INIT(libfm, 1.3.1, http://pcmanfm.sourceforge.net/) +AC_INIT(libfm, 1.3.2, http://pcmanfm.sourceforge.net/) AM_INIT_AUTOMAKE(-Wall -Werror foreign subdir-objects no-dist-gzip dist-xz -Wno-portability) AC_CONFIG_MACRO_DIR(m4) AC_CONFIG_HEADERS(config.h)
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/data/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# 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, @@ -171,7 +171,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + 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 @@ -460,8 +460,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + 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) @@ -730,7 +730,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +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)'; \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/archivers.list -> _service:tar_scm:libfm-1.3.2.tar.xz/data/archivers.list
Changed
@@ -6,10 +6,10 @@ supports_uris=true xarchiver -create=xarchiver --add-to %F +create=xarchiver --compress %F extract=xarchiver --extract %F extract_to=xarchiver --extract-to %d %F -mime_types=application/x-arj;application/arj;application/x-bzip;application/x-bzip-compressed-tar;image/x-compressed-xcf;application/gzip;application/x-gzip;application/x-rar;application/x-rar-compressed;application/vnd.rar;application/x-tar;application/x-zip;application/x-zip-compressed;application/zip;multipart/x-zip;application/x-7z-compressed;application/x-compressed-tar;application/x-bzip2;application/x-bzip2-compressed-tar;application/x-lzma-compressed-tar;application/x-lzma;application/x-deb;application/deb;application/vnd.debian.binary-package;application/x-xz;application/x-xz-compressed-tar;application/x-rpm;application/x-source-rpm;application/x-lzop;application/x-lzop-compressed-tar;application/x-tzo;application/x-war;application/x-compress;application/x-tarz;application/x-java-archive;application/x-lha;application/x-lhz; +mime_types=application/x-archive;application/x-arj;application/arj;application/x-bzip;application/x-bzip-compressed-tar;image/x-compressed-xcf;application/x-cpio;application/x-cpio-compressed;application/epub+zip;application/gzip;application/x-gzip;application/x-rar;application/x-rar-compressed;application/vnd.rar;application/x-tar;application/x-zip;application/x-zip-compressed;application/zip;multipart/x-zip;application/x-7z-compressed;application/x-compressed-tar;application/x-bzip2;application/x-bzip2-compressed-tar;application/x-lzma-compressed-tar;application/x-lzma;application/x-deb;application/deb;application/vnd.android.package-archive;application/vnd.comicbook+zip;application/vnd.debian.binary-package;application/vnd.openofficeorg.extension;application/x-xz;application/x-xz-compressed-tar;application/x-rpm;application/x-source-rpm;application/x-lzop;application/x-lzop-compressed-tar;application/x-tzo;application/x-war;application/x-compress;application/x-tarz;application/x-java-archive;application/x-lha;application/x-lhz;application/x-lrzip;application/x-lrzip-compressed-tar;application/x-lz4;application/x-lz4-compressed-tar;application/x-lzip;application/x-lzip-compressed-tar;application/x-xpinstall;application/zstd;application/x-zstd-compressed-tar; squeeze create=squeeze --new %F
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/libfm-pref-apps.1 -> _service:tar_scm:libfm-1.3.2.tar.xz/data/libfm-pref-apps.1
Changed
@@ -1,5 +1,5 @@ .\" -*-nroff-*- -.TH LIBFM-PREF-APPS 1 "June 2012" "libfm 1.3.1" "libfm-pref-apps manual" +.TH LIBFM-PREF-APPS 1 "June 2012" "libfm 1.3.2" "libfm-pref-apps manual" .SH NAME libfm-pref-apps \- sets preferred applications for programs based on libfm .SH SYNOPSIS
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/libfm-pref-apps.desktop -> _service:tar_scm:libfm-1.3.2.tar.xz/data/libfm-pref-apps.desktop
Changed
@@ -18,7 +18,7 @@ Namefi=Oletussovellukset Namefo=Framumtiknar nýtsluskipanir Namefr=Applications préférées -Namegl=Aplicacións preferidas +Namegl=Aplicativos preferidos Namehe=יישומים מועדפים Namehr=Željeni programi Namehu=Alapértelmezett alkalmazások @@ -30,6 +30,7 @@ Nameko=기본 프로그램 Namelg=Puloguramu ennondemu Namelt=Pageidaujamos programos +Namenb=Forvalgte programmer Namenl=Voorkeurstoepassingen Namepl=Preferowane programy Namept=Aplicações preferidas @@ -62,7 +63,7 @@ Commenteu=Hautatu Webeko esteka edo e-posta helbide bat klikatzean deitzen diren aplikazioak Commentfi=Selecione as aplicações a invocar ao clicar numa ligação ou endereço eletrónico Commentfr=Sélectionner les applications à ouvrir par clic sur un hyperlien ou une adresse électronique -Commentgl=Seleccione as aplicacións que chamar ao premer sobre a ligazón web ou o enderezo de correo +Commentgl=Seleccione os aplicativos que chamar ao premer sobre a ligazón web ou o enderezo de correo Commenthe=בחירת יישומים שיפעלו עקב לחיצה על קישור לאתר או לכתובת דוא״ל Commenthr=Odabrite programe koji će biti pozvani klikom na poveznicu ili e-mail adresu Commentid=Pilih aplikasi yang dipanggil saat mengklik taut Web atau alamat surel @@ -73,6 +74,7 @@ Commentko=웹 링크 또는 전자메일 주소를 누를때 호출할 프로그램을 선택하십시오 Commentlg=Londa puloguramu z'oyagala zitandike nga okoonye ku nyunzi ey'oku yintaneti oba ku ndagiriro ya email Commentlt=Pasirinkti programas, kurios bus paleidžiamos, spustelėjus saityno nuorodą ar el. pašto adresą +Commentnb=Velg programmer som skal benyttes ved klikking på nettlenker eller E-postadresser Commentnl=Kies toepassingen die worden aangeroepen bij een klik op een webkoppeling of e-mailadres Commentpl=Wybierz programy uruchamiane przy kliknięciu w odnośnik sieciowy lub adres e-mail Commentpt=Selecione as aplicações a invocar ao clicar numa ligação ou endereço eletrónico
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/lxshortcut.1 -> _service:tar_scm:libfm-1.3.2.tar.xz/data/lxshortcut.1
Changed
@@ -1,5 +1,5 @@ .\" -*-nroff-*- -.TH LXSHORTCUT 1 "August 2013" "libfm 1.3.1" "lxshortcut manual" +.TH LXSHORTCUT 1 "August 2013" "libfm 1.3.2" "lxshortcut manual" .SH NAME lxshortcut \- desktop entry file editor .SH SYNOPSIS
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/lxshortcut.desktop -> _service:tar_scm:libfm-1.3.2.tar.xz/data/lxshortcut.desktop
Changed
@@ -27,6 +27,7 @@ Nameko=바로 가기 편집기 Namelg=Kola ku Panya Namelt=Šaukinių redaktorius +Namenb=Snarveisredigerer Namenl=Snelkoppelingbewerker Namepl=Edytor skrótu Namept=Editor de atalhos @@ -49,7 +50,7 @@ Commentca=Canvia l'entrada d'escriptori existent o crea'n una de nova Commentcs=Vytvořit nový nebo změnit stávající vstup na ploše Commentda=Opret ny eller ændre eksisterende skrivebordspost -Commentde=Erstelle neuen oder ändere existieren .desktop-Datei Eintrag +Commentde=Neue .desktop-Datei erstellen oder eine vorhandene bearbeiten Commentel=Δημιουργία νέας ή αλλαγή υπάρχουσας εγγραφής στην επιφάνεια εργασίας Commenten_GB=Create new or change existing desktop entry Commentes=Crear o modificar una entrada .desktop @@ -69,6 +70,7 @@ Commentko=기존 데스크톱 항목을 새로 만들거나 바꿉니다 Commentlg=Kolawo oba kyusa ekisangibwa awakolerwa Commentlt=Sukurti naują ar keisti esamą darbalaukio įrašą +Commentnb=Opprett en ny skrivebordsoppføring eller endre en som eksisterer Commentnl=Maak nieuw of verander bestaand configuratiebestand voor de werkomgeving Commentpl=Tworzy nowy lub modyfikuje istniejący element pulpitu Commentpt=Criar entrada ou alterar uma entrada existente
View file
_service:tar_scm:libfm-1.3.1.tar.xz/data/ui/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/data/ui/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# 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, @@ -373,8 +373,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + 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) @@ -419,7 +419,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +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)'; \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/depcomp -> _service:tar_scm:libfm-1.3.2.tar.xz/depcomp
Changed
@@ -1,9 +1,9 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2013-05-30.07; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# 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 @@ -16,7 +16,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with this program. If not, see <https://www.gnu.org/licenses/>. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -783,9 +783,9 @@ # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End:
View file
_service:tar_scm:libfm-1.3.1.tar.xz/docs/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/docs/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# 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, @@ -137,7 +137,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + 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 @@ -392,8 +392,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + 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)/Makefile.decl $(am__empty): @@ -511,7 +511,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +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)'; \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/docs/reference/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/docs/reference/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# 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, @@ -137,7 +137,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + 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 @@ -392,8 +392,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + 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)/Makefile.decl $(am__empty): @@ -511,7 +511,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +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)'; \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/docs/reference/libfm/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/docs/reference/libfm/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# 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, @@ -541,8 +541,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + 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): @@ -569,7 +569,10 @@ cscope cscopelist: -distdir: $(DISTFILES) +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)'; \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/missing -> _service:tar_scm:libfm-1.3.2.tar.xz/missing
Changed
@@ -1,9 +1,9 @@ #! /bin/sh # Common wrapper for a few potentially missing GNU programs. -scriptversion=2013-10-28.13; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1996-2014 Free Software Foundation, Inc. +# Copyright (C) 1996-2020 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996. # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# along with this program. If not, see <https://www.gnu.org/licenses/>. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -101,9 +101,9 @@ exit $st fi -perl_URL=http://www.perl.org/ -flex_URL=http://flex.sourceforge.net/ -gnu_software_URL=http://www.gnu.org/software +perl_URL=https://www.perl.org/ +flex_URL=https://github.com/westes/flex +gnu_software_URL=https://www.gnu.org/software program_details () { @@ -207,9 +207,9 @@ exit $st # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End:
View file
_service:tar_scm:libfm-1.3.1.tar.xz/po/de.po -> _service:tar_scm:libfm-1.3.2.tar.xz/po/de.po
Changed
@@ -7,8 +7,8 @@ "Project-Id-Version: libfm 1.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-13 00:10+0300\n" -"PO-Revision-Date: 2015-06-12 21:40+0000\n" -"Last-Translator: H.Humpel <H.Humpel@gmx.de>\n" +"PO-Revision-Date: 2020-12-16 12:34+0100\n" +"Last-Translator: Ingo Brückl <ib@wupperonline.de>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: de\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ #: ../data/lxshortcut.desktop.in.h:2 msgid "Create new or change existing desktop entry" -msgstr "Erstelle neuen oder ändere existieren .desktop-Datei Eintrag" +msgstr "Neue .desktop-Datei erstellen oder eine vorhandene bearbeiten" #: ../data/ui/app-chooser.glade.h:1 msgid "Choose Application" @@ -40,7 +40,7 @@ #: ../data/ui/app-chooser.glade.h:2 msgid "Use selected application to open files" -msgstr "Gewählte Anwendung zum Öffnen von Dateien nutzen" +msgstr "Vorhandene Anwendung zum Öffnen verwenden" #: ../data/ui/app-chooser.glade.h:3 msgid "_Installed Applications" @@ -59,7 +59,7 @@ #: ../data/ui/app-chooser.glade.h:6 #: ../src/modules/gtk-fileprop-x-desktop.c:294 msgid "_Execute in terminal emulator" -msgstr "_Im Terminal-Emulator ausführen" +msgstr "_Im Terminal ausführen" #. row 2: "X-KeepTerminal" GtkCheckButton #: ../data/ui/app-chooser.glade.h:7 @@ -85,12 +85,11 @@ #: ../data/ui/app-chooser.glade.h:14 msgid "<b>_Application name (optional, set it to keep association)</b>" msgstr "" -"<b>_Anwendungsname (optional, legen Sie ihn fest, um die Zuordnung zu " -"behalten)</b>" +"<b>_Benennung der Anwendung (optional, um die Zuordnung zu speichern)</b>" #: ../data/ui/app-chooser.glade.h:15 msgid "Execute custom command line to open files" -msgstr "Benutzerdefinierten Befehl zum Öffnen nutzen" +msgstr "Benutzerdefinierten Befehl zum Öffnen verwenden" #: ../data/ui/app-chooser.glade.h:16 msgid "C_ustom Command Line" @@ -98,11 +97,11 @@ #: ../data/ui/app-chooser.glade.h:17 msgid "_Set selected application as default action for this file type" -msgstr "_Gewählte Anwendung als Standard für diesen Dateityp benutzen" +msgstr "_Gewählte Anwendung als Vorgabe für diesen Dateityp festlegen" #: ../data/ui/ask-rename.glade.h:1 msgid "Confirm File Replacing" -msgstr "Ersetzen von Datei bestätigen" +msgstr "Ersetzung bestätigen" #: ../data/ui/ask-rename.glade.h:2 msgid "_Skip" @@ -122,7 +121,7 @@ "\n" "Do you want to replace the existing file" msgstr "" -"<b>Eine Datei mit diesem Namen existiert bereits an diesem Ort.</b>\n" +"<b>Eine Datei mit diesem Namen existiert hier bereits.</b>\n" "\n" "Wollen Sie die vorhandene Datei" @@ -140,12 +139,12 @@ #: ../data/ui/choose-icon.ui.h:1 msgid "Choose An Icon..." -msgstr "Wählen Sie ein Symbol aus…" +msgstr "Symbol auswählen" #. genitive case is here: Choose icon from: ... #: ../data/ui/choose-icon.ui.h:3 msgid "system icon theme" -msgstr "System-Symboldesign" +msgstr "Systemthema" #. genitive case is here: Choose icon from: ... #: ../data/ui/choose-icon.ui.h:5 @@ -154,7 +153,7 @@ #: ../data/ui/choose-icon.ui.h:6 msgid "<b>Choose icon from:</b>" -msgstr "<b>Symbol auswählen aus:</b>" +msgstr "<b>Wählen Sie ein Symbol aus:</b>" #: ../data/ui/exec-file.glade.h:1 msgid "Execute File" @@ -166,7 +165,7 @@ #: ../data/ui/file-prop.glade.h:1 msgid "File Properties" -msgstr "Dateieigenschaften" +msgstr "Eigenschaften" #: ../data/ui/file-prop.glade.h:2 msgid "Icon of the file in folder view" @@ -178,7 +177,7 @@ #: ../data/ui/file-prop.glade.h:4 msgid "<b>Location:</b>" -msgstr "<b>Ort:</b>" +msgstr "<b>Pfad:</b>" #: ../data/ui/file-prop.glade.h:5 msgid "<b>Target file:</b>" @@ -202,15 +201,15 @@ #: ../data/ui/file-prop.glade.h:10 msgid "<b>Total size of files:</b>" -msgstr "<b>Gesamtgröße der Dateien:</b>" +msgstr "<b>Gesamtgröße der Datei(en):</b>" #: ../data/ui/file-prop.glade.h:11 msgid "<b>Size on disk:</b>" -msgstr "<b>Größe auf Datenträger:</b>" +msgstr "<b>Belegung auf dem Datenträger:</b>" #: ../data/ui/file-prop.glade.h:12 msgid "<b>Last modification:</b>" -msgstr "<b>Geändert:</b>" +msgstr "<b>Letzte Änderung:</b>" #: ../data/ui/file-prop.glade.h:13 msgid "<b>Last access:</b>" @@ -258,7 +257,7 @@ #: ../data/ui/file-prop.glade.h:24 msgid "Who can execute the file or enter the directory" -msgstr "Wer kann eine Datei ausführen oder einen Ordners öffnen?" +msgstr "Wer kann eine Datei ausführen oder einen Ordner öffnen?" #: ../data/ui/file-prop.glade.h:25 msgid "Special flags for file execution" @@ -274,7 +273,7 @@ #: ../data/ui/file-prop.glade.h:28 msgid "Hidden file" -msgstr "Versteckte Datei" +msgstr "Verborgene Datei" #: ../data/ui/file-prop.glade.h:29 msgid "_Permissions" @@ -303,7 +302,7 @@ # Sticky nicht übersetzen da sonst Sinnfehler! #: ../data/ui/file-prop.glade.h:34 msgid "Sticky & set GID" -msgstr "Sticky & GID festlegen" +msgstr "Sticky und GID setzen" #: ../data/ui/file-prop.glade.h:35 msgctxt "this is a file access mode bit, also known as 'suid'" @@ -355,7 +354,7 @@ #: ../data/ui/filesearch.glade.h:6 msgid "Choose a date from the following calendar" -msgstr "Ein Datum aus dem folgenden Kalender auswählen" +msgstr "Wählen Sie ein Datum aus dem Kalender aus:" #: ../data/ui/filesearch.glade.h:7 msgid "Search Files" @@ -383,7 +382,7 @@ #: ../data/ui/filesearch.glade.h:12 msgid "<b>Plac_es to Search:</b>" -msgstr "<b>Zu durchsuch_ende Orte:</b>" +msgstr "<b>Zu durchsuch_ende Verzeichnisse:</b>" #: ../data/ui/filesearch.glade.h:13 msgid "_Search in sub directories" @@ -391,7 +390,7 @@ #: ../data/ui/filesearch.glade.h:14 msgid "Search _hidden files" -msgstr "_Versteckte Dateien suchen" +msgstr "_Verborgene Dateien suchen" #: ../data/ui/filesearch.glade.h:15 msgid "Name/_Location" @@ -443,11 +442,11 @@ #: ../data/ui/filesearch.glade.h:26 msgid "File _Type" -msgstr "Datei_typ" +msgstr "_Typ" #: ../data/ui/filesearch.glade.h:27 msgid "<b>File Contain_s:</b>" -msgstr "<b>Datei Enthäl_t:</b>" +msgstr "<b>Datei enthäl_t:</b>" #: ../data/ui/filesearch.glade.h:28 msgid "C_ontent" @@ -476,11 +475,11 @@ #: ../data/ui/filesearch.glade.h:34 msgid "_Earlier than:" -msgstr "_Früher als:" +msgstr "_Vor:" #: ../data/ui/filesearch.glade.h:35 msgid "L_ater than:" -msgstr "_Später als:" +msgstr "_Nach:" #: ../data/ui/filesearch.glade.h:36 msgid "_Properties" @@ -531,12 +530,11 @@ #. Preparing to do some file operation (Copy, Move, Delete...) #: ../data/ui/progress.glade.h:4 msgid "Preparing..." -msgstr "Vorbereiten…" +msgstr "Vorbereitung …" #: ../data/ui/progress.glade.h:5 -#, fuzzy msgid "<b>Data transferred:</b>" -msgstr "<b>Zieldatei:</b>" +msgstr "<b>Übertragene Daten:</b>" #: ../data/ui/progress.glade.h:6 msgid "<b>Time remaining:</b>" @@ -544,17 +542,15 @@ #: ../data/ui/progress.glade.h:7 msgid "<b>Errors occurred:</b>" -msgstr "<b>Fehler aufgetreten:</b>" +msgstr "<b>Aufgetretene Fehler:</b>" #: ../src/base/fm-action.c:272 -#, fuzzy msgid "Empty value" -msgstr "Leere Datei" +msgstr "Parameter fehlt" #: ../src/base/fm-action.c:280 -#, fuzzy msgid "Invalid selection" -msgstr "Ungültige Zieladresse" +msgstr "Ungültige Auswahl" #. ---- GFile implementation ---- #: ../src/base/fm-action.c:807 ../src/job/fm-file-ops-job.c:271 @@ -575,7 +571,7 @@ #: ../src/base/fm-file-launcher.c:292 #, c-format msgid "No default application is set to launch URIs %s://" -msgstr "Keine festgelegte Anwendung für MIME-Typ %s://" +msgstr "Keine vorgegebene Anwendung festgelegt, um URIs %s:// zu öffnen" #: ../src/base/fm-file-launcher.c:360 #, c-format @@ -585,12 +581,12 @@ #: ../src/base/fm-file-launcher.c:454 ../src/base/fm-templates.c:1104 #, c-format msgid "No default application is set for MIME type %s" -msgstr "Keine vorgegebene Anwendung für MIME-Typ %s festgelegt." +msgstr "Keine vorgegebene Anwendung für MIME-Typ %s festgelegt" #: ../src/base/fm-path.c:179 ../src/gtk/fm-places-model.c:848 #: ../src/gtk/fm-places-model.c:1016 msgid "Devices" -msgstr "Geräte" +msgstr "Laufwerke" #: ../src/base/fm-path.c:185 ../src/gtk/fm-places-model.c:866 #: ../src/gtk/fm-places-model.c:1031 @@ -611,7 +607,7 @@ #: ../src/base/fm-terminal.c:256 msgid "No terminal emulator is set in libfm config" -msgstr "Kein Terminalemulator ist in der Konfiguration von libfm festgelegt" +msgstr "Für libfm wurde kein Terminal-Emulator konfiguriert." #: ../src/base/fm-thumbnailer.c:285 msgid "Invalid description of thumbnailer application" @@ -747,12 +743,12 @@ #: ../src/gtk/fm-app-chooser-combo-box.c:217 msgid "Customize" -msgstr "Anpassen" +msgstr "Auswählen" #: ../src/gtk/fm-app-chooser-dlg.c:325 #, c-format msgid "<b>Select an application to open \"%s\" files</b>" -msgstr "<b>Anwendung wählen um \"%s\" Dateien zu öffnen</b>" +msgstr "<b>Anwendung wählen, um Dateityp »%s« zu öffnen</b>" #: ../src/gtk/fm-app-menu-view.c:207 msgid "Installed Applications" @@ -764,7 +760,7 @@ #: ../src/gtk/fm-dir-tree-model.c:423 ../src/gtk/fm-dir-tree-model.c:1214 msgid "Loading..." -msgstr "Laden…" +msgstr "wird geladen …" #: ../src/gtk/fm-dir-tree-view.c:546 ../src/gtk/fm-side-pane.c:647 msgid "Shows tree of directories in sidebar" @@ -797,7 +793,7 @@ #: ../src/gtk/fm-file-menu.c:152 msgid "Open _With..." -msgstr "Öffnen _mit…" +msgstr "Öffnen _mit …" #: ../src/gtk/fm-file-menu.c:153 msgid "Open _With" @@ -817,15 +813,15 @@ #: ../src/gtk/fm-file-menu.c:161 msgid "_Add to Bookmarks" -msgstr "_Zu Lesezeichen hinzufügen" +msgstr "_Zu Favoriten hinzufügen" #: ../src/gtk/fm-file-menu.c:162 msgid "_Rename..." -msgstr "_Umbenennen…" +msgstr "_Umbenennen …" #: ../src/gtk/fm-file-menu.c:163 msgid "Co_mpress..." -msgstr "_Komprimieren…" +msgstr "_Komprimieren …" #: ../src/gtk/fm-file-menu.c:164 msgid "Extract _Here" @@ -833,11 +829,11 @@ #: ../src/gtk/fm-file-menu.c:165 msgid "E_xtract To..." -msgstr "_Entpacken nach…" +msgstr "_Entpacken nach …" #: ../src/gtk/fm-file-menu.c:166 ../src/gtk/fm-folder-view.c:198 msgid "Prop_erties" -msgstr "_Dateieigenschaften" +msgstr "_Eigenschaften" #. Note to translators: Trash in not noun but verb here #: ../src/gtk/fm-file-menu.c:272 ../src/gtk/fm-file-menu.c:533 @@ -847,7 +843,7 @@ # because of duplette -> free translation #: ../src/gtk/fm-file-menu.c:794 msgid "Your bookmarks already have a bookmark for this folder." -msgstr "Deine Lesezeichen haben bereits einen Eintrag für diesen Ordner." +msgstr "Ihre Favoriten haben bereits einen Eintrag für diesen Ordner." #: ../src/gtk/fm-file-properties.c:368 msgid "Image files" @@ -862,7 +858,7 @@ #: ../src/gtk/fm-file-properties.c:510 #, c-format msgid "scanning... %d" -msgstr "untersuchen… %d" +msgstr "wird ermittelt … %d" #: ../src/gtk/fm-file-properties.c:588 msgid "Please enter a valid user name or numeric id." @@ -872,7 +868,7 @@ msgid "Please enter a valid group name or numeric id." msgstr "Bitte gültigen Gruppennamen oder numerische ID eingeben." -# Direkte Anrede: Wollen Sie... ???? +# Direkte Anrede: Möchten Sie... ???? #. FIXME: may special bits and exec flags still be messed up? #: ../src/gtk/fm-file-properties.c:827 msgid "" @@ -888,19 +884,20 @@ #: ../src/gtk/fm-file-properties.c:965 msgid "This file is hidden because its name starts with a dot ('.')." msgstr "" -"Die Datei ist ausgeblendet, weil deren Name mit einem Punkt beginnt ('.')." +"Die Datei ist verborgen, weil ihr Name mit einem Punkt (».«) beginnt." #: ../src/gtk/fm-file-properties.c:969 msgid "" "Files on this system are hidden if their name starts with a dot ('.'). Hit " "<Ctrl+H> to toggle displaying hidden files." msgstr "" -"Dateien auf diesem System sind ausgeblendet, wenn deren Name mit einem Punkt " -"beginnt('.'). Umschalten auf ausgeblendete Dateien anzeigen mit <Ctrl+H>." +"Dateien sind auf diesem System verborgen, wenn deren Name mit einem Punkt " +"(».«) beginnt. Mit <Strg+H> lässt sich die Anzeige verborgener Dateien " +"umschalten." #: ../src/gtk/fm-file-properties.c:1026 msgid "scanning..." -msgstr "untersuchen…" +msgstr "wird ermittelt …" #: ../src/gtk/fm-file-properties.c:1088 msgid "<b>_Access content:</b>" @@ -908,7 +905,7 @@ #: ../src/gtk/fm-file-properties.c:1239 msgid "Files of different types" -msgstr "Dateien unterschiedlicher Typen" +msgstr "Unterschiedliche Typen" #: ../src/gtk/fm-file-properties.c:1283 msgid "<b>File:</b>" @@ -925,7 +922,7 @@ #: ../src/gtk/fm-folder-model.c:191 msgid "Description" -msgstr "Beschreibung" +msgstr "Typ" #: ../src/gtk/fm-folder-model.c:192 msgid "Size" @@ -941,11 +938,11 @@ #: ../src/gtk/fm-folder-model.c:195 msgid "Modified" -msgstr "Geändert" +msgstr "Änderungsdatum" #: ../src/gtk/fm-folder-model.c:196 msgid "Location" -msgstr "Ort" +msgstr "Pfad" #: ../src/gtk/fm-folder-model.c:197 msgid "Extension" @@ -953,7 +950,7 @@ #: ../src/gtk/fm-folder-view.c:178 msgid "Create _New..." -msgstr "_Neu…" +msgstr "_Neu …" #: ../src/gtk/fm-folder-view.c:179 msgid "Folder" @@ -973,7 +970,7 @@ #: ../src/gtk/fm-folder-view.c:196 msgid "_Rename Folder..." -msgstr "Ordne_r umbenennen..." +msgstr "Ordne_r umbenennen …" #: ../src/gtk/fm-folder-view.c:197 msgid "Folder Prop_erties" @@ -981,12 +978,12 @@ #: ../src/gtk/fm-folder-view.c:205 msgid "Show _Hidden" -msgstr "_Versteckte Dateien anzeigen" +msgstr "_Verborgene Dateien anzeigen" #. Note to translators: "Mingle..." means "Do not put folders before files" but make the translation as short as possible, please! #: ../src/gtk/fm-folder-view.c:207 msgid "Mingle _Files and Folders" -msgstr "Dateien und Ordner _vereinen" +msgstr "Dateien und Ordner _mischen" #: ../src/gtk/fm-folder-view.c:208 msgid "_Ignore Name Case" @@ -1010,7 +1007,7 @@ #: ../src/gtk/fm-folder-view.c:845 msgid "Enter a name for the newly created folder:" -msgstr "Geben Sie einen Namen für den neu erstellten Ordner an:" +msgstr "Geben Sie einen Namen für den neuen Ordner an:" #: ../src/gtk/fm-folder-view.c:846 msgid "Creating New Folder" @@ -1018,11 +1015,11 @@ #: ../src/gtk/fm-folder-view.c:859 msgid "Enter a name for empty file:" -msgstr "Bitte geben Sie einen Namen für die leere Datei ein:" +msgstr "Geben Sie einen Namen für die leere Datei an:" #: ../src/gtk/fm-folder-view.c:860 msgid "Creating ..." -msgstr "Erstellen …" +msgstr "Datei erstellen" #: ../src/gtk/fm-folder-view.c:866 msgid "New" @@ -1040,7 +1037,7 @@ #: ../src/gtk/fm-folder-view.c:883 msgid "_Run default application on file after creation" -msgstr "Datei nach dem Erstellen mit der Standa_rdanwendung öffnen" +msgstr "Datei nach der E_rstellung mit der vorgegebenen Anwendung öffnen" #: ../src/gtk/fm-gtk-file-launcher.c:144 #, c-format @@ -1086,27 +1083,27 @@ #: ../src/gtk/fm-gtk-utils.c:924 #, c-format msgid "Do you want to move the file '%s' to trash can?" -msgstr "Soll die gewählte Datei '%s' in den Papierkorb verschoben werden?" +msgstr "Soll die Datei »%s« in den Papierkorb verschoben werden?" #: ../src/gtk/fm-gtk-utils.c:929 #, c-format msgid "Do you want to move the %d selected file to trash can?" msgid_plural "Do you want to move the %d selected files to trash can?" -msgstr0 "Soll die gewählte Datei %d in den Papierkorb verschoben werden?" +msgstr0 "Soll die gewählte Datei in den Papierkorb verschoben werden?" msgstr1 "" -"Sollen die gewählten Dateien %d in den Papierkorb verschoben werden?" +"Sollen die %d gewählten Dateien in den Papierkorb verschoben werden?" #: ../src/gtk/fm-gtk-utils.c:989 #, c-format msgid "Do you want to delete the file '%s'?" -msgstr "Gewählte Datei '%s' löschen?" +msgstr "Soll die Datei »%s« gelöscht werden?" #: ../src/gtk/fm-gtk-utils.c:994 #, c-format msgid "Do you want to delete the %d selected file?" msgid_plural "Do you want to delete the %d selected files?" -msgstr0 "Gewählte %d Datei löschen?" -msgstr1 "Gewählte %d Dateien löschen?" +msgstr0 "Soll die gewählte Datei gelöscht werden?" +msgstr1 "Sollen die %d gewählten Dateien gelöscht werden?" #: ../src/gtk/fm-gtk-utils.c:1093 msgid "Rename File" @@ -1130,7 +1127,7 @@ #: ../src/gtk/fm-places-model.c:781 ../src/gtk/fm-places-model.c:995 msgid "Home Folder" -msgstr "Benutzerordner" +msgstr "Benutzerverzeichnis" #: ../src/gtk/fm-places-model.c:797 ../src/gtk/fm-places-model.c:1003 msgid "Desktop" @@ -1163,19 +1160,19 @@ #: ../src/gtk/fm-places-view.c:150 msgid "_Rename Bookmark Item" -msgstr "_Lesezeichen umbenennen" +msgstr "_Favoriten umbenennen" #: ../src/gtk/fm-places-view.c:151 msgid "Re_move from Bookmarks" -msgstr "Lesezeichen _entfernen" +msgstr "Aus Favoriten _entfernen" #: ../src/gtk/fm-places-view.c:152 msgid "Move Bookmark _Up" -msgstr "Lesezeichen nach _oben verschieben" +msgstr "Favoriten nach _oben verschieben" #: ../src/gtk/fm-places-view.c:153 msgid "Move Bookmark _Down" -msgstr "Lesezeichen nach _unten verschieben" +msgstr "Favoriten nach _unten verschieben" #: ../src/gtk/fm-places-view.c:166 ../src/modules/gtk-menu-trash.c:87 #: ../src/modules/gtk-menu-trash.c:114 @@ -1185,12 +1182,12 @@ #: ../src/gtk/fm-places-view.c:533 ../src/gtk/fm-side-pane.c:645 msgid "Shows list of common places, devices, and bookmarks in sidebar" msgstr "" -"Liste von häufig verwendeten Orten, Geräten und Lesezeichen in der " +"Liste häufig verwendeter Pfade, Laufwerke und Favoriten in der " "Seitenleiste anzeigen" #: ../src/gtk/fm-places-view.c:1124 msgid "Rename Bookmark Item" -msgstr "Lesezeichen umbenennen" +msgstr "Favoriten umbenennen" #: ../src/gtk/fm-places-view.c:1125 msgid "Enter a new name:" @@ -1221,14 +1218,13 @@ "geändert: %s" #: ../src/gtk/fm-progress-dlg.c:343 -#, fuzzy msgid "<b>Errors occurred before file operation was stopped.</b>" msgstr "" -"<b>Fehler sind aufgetreten bevor die Dateioperationen angehalten wurden.</b>" +"<b>Bevor die Dateioperation gestoppt wurde, sind Fehler aufgetreten.</b>" #: ../src/gtk/fm-progress-dlg.c:345 msgid "Cancelled" -msgstr "Abgebrochen" +msgstr "Abbruch" #: ../src/gtk/fm-progress-dlg.c:349 msgid "<b>The file operation was completed with errors.</b>" @@ -1236,7 +1232,7 @@ #: ../src/gtk/fm-progress-dlg.c:351 msgid "Finished" -msgstr "Abgeschlossen" +msgstr "Ergebnis" #: ../src/gtk/fm-progress-dlg.c:373 msgid "" @@ -1254,7 +1250,7 @@ #: ../src/gtk/fm-progress-dlg.c:422 msgid "_Resume" -msgstr "Wiede_rherstellen" +msgstr "Fo_rtsetzen" #: ../src/gtk/fm-progress-dlg.c:597 msgid ", " @@ -1278,7 +1274,7 @@ #. translators: it is part of "Deleting files:" or "Deleting xxx.txt" #: ../src/gtk/fm-progress-dlg.c:629 msgid "Deleting" -msgstr "Löschen von" +msgstr "Entfernen von" # Wenn man im Deutschen von Link spricht, meint man den Hyperlink auf Webseiten -> Verknüpfung #. translators: it is part of "Creating link /path/xxx.txt" @@ -1298,16 +1294,16 @@ #. translators: it is part of "Changing attributes of xxx.txt" #: ../src/gtk/fm-progress-dlg.c:643 msgid "Changing attributes of" -msgstr "Attribute ändern von" +msgstr "Änderung der Attribute von" #: ../src/gtk/fm-progress-dlg.c:644 msgid "Changing attributes of files" -msgstr "Attribute von Dateien ändern" +msgstr "Änderung der Attribute von Dateien" #. translators: it is part of "Restoring files:" or "Restoring xxx.txt" #: ../src/gtk/fm-progress-dlg.c:650 msgid "Restoring" -msgstr "Wiederherstellen" +msgstr "Wiederherstellen von" #. note to translators: resulting string is such as "Deleting files" #: ../src/gtk/fm-progress-dlg.c:660 @@ -1317,7 +1313,7 @@ #: ../src/gtk/fm-progress-dlg.c:663 msgid "<b>File operation is in progress...</b>" -msgstr "<b>Dateioperation in Durchführung...</b>" +msgstr "<b>Dateioperation wird durchgeführt …</b>" #. note to translators: resulting string is such as "Deleting file" #: ../src/gtk/fm-progress-dlg.c:669 @@ -1337,7 +1333,7 @@ #: ../src/gtk/fm-side-pane.c:67 msgid "_Places" -msgstr "_Orte" +msgstr "_Favoriten" #: ../src/gtk/fm-side-pane.c:68 msgid "_Directory Tree" @@ -1349,7 +1345,7 @@ #: ../src/gtk/fm-side-pane.c:428 ../src/gtk/fm-side-pane.c:621 msgid "Places" -msgstr "Orte" +msgstr "Favoriten" #: ../src/gtk/fm-side-pane.c:438 ../src/gtk/fm-side-pane.c:623 msgid "Directory Tree" @@ -1362,15 +1358,15 @@ #: ../src/gtk/fm-standard-view.c:818 #, c-format msgid "_Hide %s" -msgstr "%s _verstecken" +msgstr "%s _nicht anzeigen" #: ../src/gtk/fm-standard-view.c:826 msgid "_Move Left" -msgstr "Bewegen nach _Links" +msgstr "Nach _links verschieben" #: ../src/gtk/fm-standard-view.c:832 msgid "Move _Right" -msgstr "Bewegen nach _Rechts" +msgstr "Nach _rechts verschieben" #: ../src/gtk/fm-standard-view.c:855 #, c-format @@ -1379,11 +1375,11 @@ #: ../src/gtk/fm-standard-view.c:867 msgid "_Forget Width" -msgstr "Breite _vergessen" +msgstr "Normale _Breite" #: ../src/gtk/fm-standard-view.c:1859 msgid "_Icon View" -msgstr "Symbolans_icht" +msgstr "_Symbolansicht" #: ../src/gtk/fm-standard-view.c:1860 msgid "_Compact View" @@ -1391,11 +1387,11 @@ #: ../src/gtk/fm-standard-view.c:1861 msgid "_Thumbnail View" -msgstr "Minia_turansicht" +msgstr "_Vorschaubildansicht" #: ../src/gtk/fm-standard-view.c:1862 msgid "Detailed _List View" -msgstr "Detai_lansicht" +msgstr "_Detailansicht" #: ../src/gtk/fm-tab-label.c:159 msgid "Changes active tab" @@ -1422,11 +1418,11 @@ #: ../src/job/fm-file-ops-job-xfer.c:58 msgid "Destination does not exist" -msgstr "" +msgstr "Das Ziel existiert nicht." #: ../src/job/fm-file-ops-job-xfer.c:63 msgid "Source and destination are the same." -msgstr "Quelle und Ziel sind identisch" +msgstr "Quelle und Ziel sind identisch." #: ../src/job/fm-file-ops-job-xfer.c:70 msgid "Cannot move a folder into its sub folder" @@ -1538,7 +1534,7 @@ #: ../src/modules/vfs-menu.c:2542 msgid "Name of menu directory should not end with \".desktop\"" -msgstr "Der Name des Menüverzeichnis sollte nicht auf \".desktop\" enden" +msgstr "Der Name des Menüverzeichnisses sollte nicht auf ».desktop« enden." #: ../src/modules/vfs-menu.c:2587 msgid "Invalid operation with menu root" @@ -1576,7 +1572,7 @@ #: ../src/modules/gtk-fileprop-x-desktop.c:288 msgid "Command to execute when the application icon is activated" -msgstr "Auszuführender Befehl beim Aktivieren des Anwendungssymbols" +msgstr "Auszuführender Befehl bei Aktivierung des Anwendungssymbols" #: ../src/modules/gtk-fileprop-x-desktop.c:322 msgid "<b>D_escription:</b>" @@ -1584,7 +1580,7 @@ #: ../src/modules/gtk-fileprop-x-desktop.c:332 msgid "Generic name of the application" -msgstr "Allgemeiner Name der Anwendung" +msgstr "Allgemeine Bezeichnung der Anwendung" #: ../src/modules/gtk-fileprop-x-desktop.c:340 msgid "<b>_Working directory:</b>" @@ -1592,15 +1588,15 @@ #: ../src/modules/gtk-fileprop-x-desktop.c:351 msgid "The working directory to run the program in" -msgstr "Das Arbeitsverzeichnis, in dem das Programm ausgeführt werden soll" +msgstr "Verzeichnis, in dem das Programm ausgeführt werden soll" #: ../src/modules/gtk-fileprop-x-desktop.c:359 msgid "<b>_Tooltip:</b>" -msgstr "<b>_Tooltip:</b>" +msgstr "<b>_Minihilfe:</b>" #: ../src/modules/gtk-fileprop-x-desktop.c:369 msgid "Tooltip to show on application" -msgstr "Tooltip an der Anwendung anzeigen" +msgstr "Minihilfe, die zu der Anwendung angezeigt werden soll" #. TODO: handle "TryExec" field ? #. row 7: "StartupNotify" GtkCheckButton @@ -1610,7 +1606,7 @@ #: ../src/modules/gtk-fileprop-x-desktop.c:388 msgid "_Desktop Entry" -msgstr "_.desktop-Datei Eintrag" +msgstr ".desktop-_Inhalt" #: ../src/modules/gtk-menu-trash.c:74 msgid "_Restore" @@ -1618,7 +1614,7 @@ #: ../src/modules/gtk-menu-trash.c:75 msgid "Restore trashed files to original paths" -msgstr "Dateien an ihrem ursprünglichen Ort wiederherstellen" +msgstr "Dateien im Papierkorb an ihrem ursprünglichen Ort wiederherstellen" #: ../src/tools/lxshortcut.c:42 msgid "source file name or desktop id" @@ -1639,278 +1635,160 @@ #. Translator: The word "blank" is used as an adjective, e.g. we are decsribing discs that are already blank #: ../src/udisks/g-udisks-device.c:41 msgid "CD-ROM Disc" -msgstr "CD-ROM Medium" +msgstr "CD-ROM" #: ../src/udisks/g-udisks-device.c:41 msgid "Blank CD-ROM Disc" -msgstr "CD-ROM Rohling" +msgstr "Leere CD-ROM" #: ../src/udisks/g-udisks-device.c:42 msgid "CD-R Disc" -msgstr "CD-R Medium" +msgstr "CD-R" #: ../src/udisks/g-udisks-device.c:42 msgid "Blank CD-R Disc" -msgstr "CD-R Rohling" +msgstr "Leere CD-R" #: ../src/udisks/g-udisks-device.c:43 msgid "CD-RW Disc" -msgstr "CD-RW Medium" +msgstr "CD-RW" #: ../src/udisks/g-udisks-device.c:43 msgid "Blank CD-RW Disc" -msgstr "CD-RW Rohling" +msgstr "Leere CD-RW" #: ../src/udisks/g-udisks-device.c:44 ../src/udisks/g-udisks-device.c:45 msgid "DVD-ROM Disc" -msgstr "DVD-ROM Medium" +msgstr "DVD-ROM" #: ../src/udisks/g-udisks-device.c:44 ../src/udisks/g-udisks-device.c:45 msgid "Blank DVD-ROM Disc" -msgstr "DVD-ROM Rohling" +msgstr "Leere DVD-ROM" #: ../src/udisks/g-udisks-device.c:46 msgid "DVD-RW Disc" -msgstr "DVD-RW Medium" +msgstr "DVD-RW" #: ../src/udisks/g-udisks-device.c:46 msgid "Blank DVD-RW Disc" -msgstr "DVD-RW Rohling" +msgstr "Leere DVD-RW" #: ../src/udisks/g-udisks-device.c:47 msgid "DVD-RAM Disc" -msgstr "DVD-RAM Medium" +msgstr "DVD-RAM" #: ../src/udisks/g-udisks-device.c:47 msgid "Blank DVD-RAM Disc" -msgstr "DVD-RAM Rohling" +msgstr "Leere DVD-RAM" #: ../src/udisks/g-udisks-device.c:48 msgid "DVD+R Disc" -msgstr "DVD+R Medium" +msgstr "DVD+R" #: ../src/udisks/g-udisks-device.c:48 msgid "Blank DVD+R Disc" -msgstr "DVD+R Rohling" +msgstr "Leere DVD+R" #: ../src/udisks/g-udisks-device.c:49 msgid "DVD+RW Disc" -msgstr "DVD+RW Medium" +msgstr "DVD+RW" #: ../src/udisks/g-udisks-device.c:49 msgid "Blank DVD+RW Disc" -msgstr "DVD+RW Rohling" +msgstr "Leere DVD+RW" #: ../src/udisks/g-udisks-device.c:50 msgid "DVD+R DL Disc" -msgstr "DVD+R DL Medium" +msgstr "DVD+R DL" #: ../src/udisks/g-udisks-device.c:50 msgid "Blank DVD+R DL Disc" -msgstr "DVD+R DL Rohling" +msgstr "Leere DVD+R DL" #: ../src/udisks/g-udisks-device.c:51 msgid "DVD+RW DL Disc" -msgstr "DVD+ DL Medium (wiederbeschreibbar)" +msgstr "DVD+RW DL" #: ../src/udisks/g-udisks-device.c:51 msgid "Blank DVD+RW DL Disc" -msgstr "DVD+ DL Rohling (wiederbeschreibbar)" +msgstr "Leere DVD+RW DL" #: ../src/udisks/g-udisks-device.c:52 msgid "Blu-Ray Disc" -msgstr "Blu-Ray Medium" +msgstr "Blu-ray" #: ../src/udisks/g-udisks-device.c:52 msgid "Blank Blu-Ray Disc" -msgstr "Blu-Ray Rohling" +msgstr "Leere Blu-ray" #: ../src/udisks/g-udisks-device.c:53 msgid "Blu-Ray R Disc" -msgstr "Blu-Ray R Medium" +msgstr "BD-R" #: ../src/udisks/g-udisks-device.c:53 msgid "Blank Blu-Ray R Disc" -msgstr "Blu-Ray R Rohling" +msgstr "Leere BD-R" #: ../src/udisks/g-udisks-device.c:54 msgid "Blu-Ray RW Disc" -msgstr "Blu-Ray Medium (wiederbeschreibbar)" +msgstr "BD-RE" #: ../src/udisks/g-udisks-device.c:54 msgid "Blank Blu-Ray RW Disc" -msgstr "Blu-Ray Rohling (wiederbeschreibbar)" +msgstr "Leere BD-RE" #: ../src/udisks/g-udisks-device.c:55 msgid "HD DVD Disc" -msgstr "HD DVD Medium" +msgstr "HD DVD" #: ../src/udisks/g-udisks-device.c:55 msgid "Blank HD DVD Disc" -msgstr "HD DVD Rohling" +msgstr "Leere HD DVD" #: ../src/udisks/g-udisks-device.c:56 msgid "HD DVD-R Disc" -msgstr "HD DVD-R Medium" +msgstr "HD DVD-R" #: ../src/udisks/g-udisks-device.c:56 msgid "Blank HD DVD-R Disc" -msgstr "HD DVD-R Rohling" +msgstr "Leere HD DVD-R" #: ../src/udisks/g-udisks-device.c:57 msgid "HD DVD-RW Disc" -msgstr "HD DVD-RW Medium" +msgstr "HD DVD-RW" #: ../src/udisks/g-udisks-device.c:57 msgid "Blank HD DVD-RW Disc" -msgstr "HD DVD-RW Rohling" +msgstr "Leere HD DVD-RW" #: ../src/udisks/g-udisks-device.c:58 msgid "MO Disc" -msgstr "MO Medium" +msgstr "MO-Disk" #: ../src/udisks/g-udisks-device.c:58 msgid "Blank MO Disc" -msgstr "Leeres MO Medium" +msgstr "Leere MO-Disk" #: ../src/udisks/g-udisks-device.c:59 msgid "MRW Disc" -msgstr "MRW Medium" +msgstr "MRW-Disk" #: ../src/udisks/g-udisks-device.c:59 msgid "Blank MRW Disc" -msgstr "Leeres MRW Medium" +msgstr "Leere MRW-Disk" #: ../src/udisks/g-udisks-device.c:60 msgid "MRW/W Disc" -msgstr "MRW/W Medium" +msgstr "MRW/W-Disk" #: ../src/udisks/g-udisks-device.c:60 msgid "Blank MRW/W Disc" -msgstr "Leeres MRW/W Medium" +msgstr "Leere MRW/W-Disk" #: ../src/udisks/g-udisks-device.c:299 msgid "Blank Optical Disc" -msgstr "Leeres optisches Medium" +msgstr "Leerer optischer Datenträger" #: ../src/udisks/g-udisks-device.c:301 msgid "Optical Disc" -msgstr "Optisches Medium" - -#~ msgid "Symlinking" -#~ msgstr "Symlinking" - -#~ msgid "*" -#~ msgstr "*" - -#~ msgid "Sticky" -#~ msgstr "Klebrig" - -#~ msgid "Set UID" -#~ msgstr "UID setzen" - -#~ msgid "Only owner" -#~ msgstr "Nur Besitzer" - -#~ msgid "<b>Processing:</b>" -#~ msgstr "<b>Bearbeiten:</b>" - -#~ msgid "<b>Progress:</b>" -#~ msgstr "<b>Fortschritt:</b>" - -#~ msgid "<b>Some errors occurred:</b>" -#~ msgstr "<b>Einige Fehler sind aufgetreten:</b>" - -#~ msgid "Re_move from Bookmark" -#~ msgstr "_Lesezeichen entfernen" - -#~ msgid "The file operation is cancelled and there are some errors." -#~ msgstr "Die Dateioperation wurde abgebrochen und es gab einige Fehler." - -#~ msgid "The file operation is finished, but there are some errors." -#~ msgstr "Der Vorgang wurde abgeschlossen, aber es traten Fehler auf." - -#, fuzzy -#~ msgid "Moving Files" -#~ msgstr "Dateien werden verschoben" - -#, fuzzy -#~ msgid "Copying Files" -#~ msgstr "Dateien werden kopiert" - -#, fuzzy -#~ msgid "Trashing Files" -#~ msgstr "Dateien werden in den Papierkorb verschoben" - -#, fuzzy -#~ msgid "Deleting Files" -#~ msgstr "Dateien werden gelöscht" - -# Verknüpfung oder Link? -#, fuzzy -#~ msgid "Creating Symlinks" -#~ msgstr "Symbolische Verknüpfung werden erstellt" - -#, fuzzy -#~ msgid "Changing File Attributes" -#~ msgstr "Dateiattribute ändern" - -#~ msgid "_Rename Folder" -#~ msgstr "Ordne_r umbenennen" - -#, fuzzy -#~ msgid "<b>File type to be opened:</b>" -#~ msgstr "<b>Dateityp zum Öffnen:</b>" - -#~ msgid "_Installed Application" -#~ msgstr "_Installierte Anwendung" - -#~ msgid "_Set selected application as default action of this file type" -#~ msgstr "_Gewählte Anwendung als Vorgabe für diesen Dateityp benutzen" - -#~ msgid "_Browse" -#~ msgstr "_Durchsuchen" - -#~ msgid "My Computer" -#~ msgstr "Mein Computer" - -#~ msgid "_Move" -#~ msgstr "_Bewegen" - -#~ msgid "_Trash" -#~ msgstr "_Papierkorb" - -#~ msgid "_Only for this folder" -#~ msgstr "_Nur für diesen Ordner" - -#~ msgid "Check to remember sort as folder setting rather than global one" -#~ msgstr "" -#~ "Aktivieren, um die Sortierung als Ordnereinstellung zu speichern anstatt " -#~ "sie Global zu merken" - -#~ msgid "Please select a folder" -#~ msgstr "Ordner wählen" - -#~ msgid "Entry for folder path" -#~ msgstr "Eintrag für Ordnerpfad" - -#~ msgid "Computer" -#~ msgstr "Computer" - -#~ msgid "Network Drives" -#~ msgstr "Netzlaufwerke" - -#~ msgid "_Run in terminal emulator" -#~ msgstr "_Im Terminal-Emulator ausführen" - -#~ msgid "_Keep terminal window open after run" -#~ msgstr "_Das Terminalfenster nach dem Ausführen geöffnet lassen" - -#~ msgid "Mount Point" -#~ msgstr "Einhängepunkt" - -#~ msgid "Create _Symlink" -#~ msgstr "_Verknüpfung anlegen" - -#~ msgid "Se_nd To" -#~ msgstr "_Senden an" +msgstr "Optischer Datenträger"
View file
_service:tar_scm:libfm-1.3.1.tar.xz/po/gl.po -> _service:tar_scm:libfm-1.3.2.tar.xz/po/gl.po
Changed
@@ -7,7 +7,7 @@ "Project-Id-Version: libfm 1.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-13 00:10+0300\n" -"PO-Revision-Date: 2018-04-13 16:27+0000\n" +"PO-Revision-Date: 2019-02-22 09:18+0000\n" "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n" "Language-Team: Galician <proxecto@trasno.net>\n" "Language: gl\n" @@ -16,16 +16,16 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1523636857.576785\n" +"X-POOTLE-MTIME: 1550827112.173006\n" #: ../data/libfm-pref-apps.desktop.in.h:1 ../data/ui/preferred-apps.glade.h:1 msgid "Preferred Applications" -msgstr "Aplicacións preferidas" +msgstr "Aplicativos preferidos" #: ../data/libfm-pref-apps.desktop.in.h:2 msgid "Select applications called on click on Web link or e-mail address" msgstr "" -"Seleccione as aplicacións que chamar ao premer sobre a ligazón web ou o " +"Seleccione os aplicativos que chamar ao premer sobre a ligazón web ou o " "enderezo de correo" #: ../data/lxshortcut.desktop.in.h:1 @@ -38,15 +38,15 @@ #: ../data/ui/app-chooser.glade.h:1 msgid "Choose Application" -msgstr "Escolla unha aplicación" +msgstr "Escolla un aplicativo" #: ../data/ui/app-chooser.glade.h:2 msgid "Use selected application to open files" -msgstr "Utilizar a aplicación seleccionada para abrir os ficheiros" +msgstr "Utilizar o aplicativo seleccionado para abrir os ficheiros" #: ../data/ui/app-chooser.glade.h:3 msgid "_Installed Applications" -msgstr "Aplicacións _instaladas" +msgstr "Aplicativos _instalados" #: ../data/ui/app-chooser.glade.h:4 msgid "<b>C_ommand line to execute:</b>" @@ -87,7 +87,7 @@ #: ../data/ui/app-chooser.glade.h:14 msgid "<b>_Application name (optional, set it to keep association)</b>" msgstr "" -"<b>_Nome da aplicación (opcional, estabelecela para manter a asociación)</b>" +"<b>_Nome do aplicativon (opcional, estabelecelo para manter a asociación)</b>" #: ../data/ui/app-chooser.glade.h:15 msgid "Execute custom command line to open files" @@ -100,7 +100,7 @@ #: ../data/ui/app-chooser.glade.h:17 msgid "_Set selected application as default action for this file type" msgstr "" -"E_stabelecer a aplicación seleccionada como acción predeterminada para os " +"E_stabelecer oaplicativo seleccionado como acción predeterminada para os " "ficheiros deste tipo" #: ../data/ui/ask-rename.glade.h:1 @@ -197,7 +197,7 @@ #: ../data/ui/file-prop.glade.h:8 msgid "Select the application used to open files of this type " -msgstr "Escolla a aplicación utilizada para abrir os ficheiros deste tipo " +msgstr "Escolla o aplicativo utilizado para abrir os ficheiros deste tipo " #: ../data/ui/file-prop.glade.h:9 msgid "<b>Total count of files:</b>" @@ -277,7 +277,7 @@ #: ../data/ui/file-prop.glade.h:28 msgid "Hidden file" -msgstr "Ficheiro agochado" +msgstr "Ficheiro agachado" #: ../data/ui/file-prop.glade.h:29 msgid "_Permissions" @@ -392,7 +392,7 @@ #: ../data/ui/filesearch.glade.h:14 msgid "Search _hidden files" -msgstr "Buscar nos _ficheiros agochados" +msgstr "Buscar nos _ficheiros agachados" #: ../data/ui/filesearch.glade.h:15 msgid "Name/_Location" @@ -518,7 +518,7 @@ #: ../data/ui/preferred-apps.glade.h:8 msgid "System Applications" -msgstr "Aplicacións do sistema" +msgstr "Aplicativos do sistema" #: ../data/ui/preferred-apps.glade.h:9 msgid "File Associations" @@ -575,7 +575,7 @@ #, c-format msgid "No default application is set to launch URIs %s://" msgstr "" -"Non está estabelecida a aplicación predeterminada para iniciar as URI %s://" +"Non está estabelecido o aplicativo predeterminado para iniciar as URI %s://" #: ../src/base/fm-file-launcher.c:360 #, c-format @@ -585,7 +585,7 @@ #: ../src/base/fm-file-launcher.c:454 ../src/base/fm-templates.c:1104 #, c-format msgid "No default application is set for MIME type %s" -msgstr "Non está estabelecida a aplicación predeterminada para o tipo MIME %s" +msgstr "Non está estabelecido o aplicativo predeterminado para o tipo MIME %s" #: ../src/base/fm-path.c:179 ../src/gtk/fm-places-model.c:848 #: ../src/gtk/fm-places-model.c:1016 @@ -616,7 +616,7 @@ #: ../src/base/fm-thumbnailer.c:285 msgid "Invalid description of thumbnailer application" -msgstr "Descrición incorrecta da aplicación de miniaturas" +msgstr "Descrición incorrecta do aplicativo de miniaturas" #: ../src/base/fm-utils.c:137 msgid "kB" @@ -750,11 +750,11 @@ #: ../src/gtk/fm-app-chooser-dlg.c:325 #, c-format msgid "<b>Select an application to open \"%s\" files</b>" -msgstr "<b>Seleccione unha aplicación para abrir os ficheiros «%s»</b>" +msgstr "<b>Seleccione un aplicativo para abrir os ficheiros «%s»</b>" #: ../src/gtk/fm-app-menu-view.c:207 msgid "Installed Applications" -msgstr "Aplicacións instaladas" +msgstr "Aplicativos instalados" #: ../src/gtk/fm-dir-tree-model.c:421 ../src/gtk/fm-dir-tree-model.c:1213 msgid "<No subfolders>" @@ -879,20 +879,19 @@ #: ../src/gtk/fm-file-properties.c:960 msgid "Hide or unhide the file" -msgstr "Agochar ou amosar o ficheiro" +msgstr "Agachar ou amosar o ficheiro" #: ../src/gtk/fm-file-properties.c:965 msgid "This file is hidden because its name starts with a dot ('.')." -msgstr "" -"Este ficheiro está agochado por por de comezar o seu nome cun punto («.»)" +msgstr "Este ficheiro está agachado por comezar o seu nome cun punto («.»)" #: ../src/gtk/fm-file-properties.c:969 msgid "" "Files on this system are hidden if their name starts with a dot ('.'). Hit " "<Ctrl+H> to toggle displaying hidden files." msgstr "" -"Os ficheiros neste sistema están agochados por por de comezar o seu nome cun " -"punto («.»). Prema <Ctrl+H> para amosar os ficheiros agochados." +"Os ficheiros neste sistema están agachados por comezar o seu nome cun punto " +"(«.»). Prema <Ctrl+H> para amosar os ficheiros agachados." #: ../src/gtk/fm-file-properties.c:1026 msgid "scanning..." @@ -977,7 +976,7 @@ #: ../src/gtk/fm-folder-view.c:205 msgid "Show _Hidden" -msgstr "A_mosar agochados" +msgstr "A_mosar agachados" #. Note to translators: "Mingle..." means "Do not put folders before files" but make the translation as short as possible, please! #: ../src/gtk/fm-folder-view.c:207 @@ -1036,7 +1035,7 @@ #: ../src/gtk/fm-folder-view.c:883 msgid "_Run default application on file after creation" -msgstr "E_xecutar a aplicación predeterminada doo ficheiro após a súa creación" +msgstr "E_xecutar o aplicativo predeterminado do ficheiro após a súa creación" #: ../src/gtk/fm-gtk-file-launcher.c:144 #, c-format @@ -1133,7 +1132,7 @@ #: ../src/gtk/fm-places-model.c:815 ../src/gtk/fm-places-model.c:1023 #: ../src/modules/vfs-menu.c:1538 msgid "Applications" -msgstr "Aplicacións" +msgstr "Aplicativos" #: ../src/gtk/fm-places-model.c:831 ../src/gtk/fm-places-model.c:1009 msgid "Filesystem Root" @@ -1354,7 +1353,7 @@ #: ../src/gtk/fm-standard-view.c:818 #, c-format msgid "_Hide %s" -msgstr "_Agochar %s" +msgstr "_Agachar %s" #: ../src/gtk/fm-standard-view.c:826 msgid "_Move Left" @@ -1454,7 +1453,7 @@ #: ../src/modules/vfs-menu.c:309 msgid "XML file doesn't contain Applications root" -msgstr "O ficheiro XML non conten a raíz das aplicacións" +msgstr "O ficheiro XML non conten a raíz dos aplicativos" #: ../src/modules/vfs-menu.c:384 ../src/modules/vfs-menu.c:464 #: ../src/modules/vfs-menu.c:568 ../src/modules/vfs-menu.c:682 @@ -1496,7 +1495,7 @@ #: ../src/modules/vfs-menu.c:1790 msgid "Change hidden status isn't supported for menu directory" -msgstr "Cambiar o estado agochado non é compatíbel co directorio do menú" +msgstr "Cambiar o estado agachado non é compatíbel co directorio do menú" #: ../src/modules/vfs-menu.c:1948 #, c-format @@ -1568,7 +1567,7 @@ #: ../src/modules/gtk-fileprop-x-desktop.c:288 msgid "Command to execute when the application icon is activated" -msgstr "Orde que executar cando se activa a icona da aplicación" +msgstr "Orde que executar cando se activa a icona do aplicativo" #: ../src/modules/gtk-fileprop-x-desktop.c:322 msgid "<b>D_escription:</b>" @@ -1576,7 +1575,7 @@ #: ../src/modules/gtk-fileprop-x-desktop.c:332 msgid "Generic name of the application" -msgstr "Nome xenérico da aplicación" +msgstr "Nome xenérico do aplicativo" #: ../src/modules/gtk-fileprop-x-desktop.c:340 msgid "<b>_Working directory:</b>" @@ -1592,7 +1591,7 @@ #: ../src/modules/gtk-fileprop-x-desktop.c:369 msgid "Tooltip to show on application" -msgstr "Xanela emerxente para amosar a aplicación" +msgstr "Xanela emerxente para amosar o aplicativo" #. TODO: handle "TryExec" field ? #. row 7: "StartupNotify" GtkCheckButton
View file
_service:tar_scm:libfm-1.3.1.tar.xz/po/nb.po -> _service:tar_scm:libfm-1.3.2.tar.xz/po/nb.po
Changed
@@ -5,68 +5,67 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-13 00:10+0300\n" -"PO-Revision-Date: 2015-08-17 01:28+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE <LL@li.org>\n" +"PO-Revision-Date: 2019-08-22 14:42+0200\n" +"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>\n" "Language: nb\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" -"X-Generator: Pootle 2.7\n" +"X-Generator: Poedit 2.2.3\n" "X-POOTLE-MTIME: 1439774902.815313\n" +"Language-Team: \n" #: ../data/libfm-pref-apps.desktop.in.h:1 ../data/ui/preferred-apps.glade.h:1 msgid "Preferred Applications" -msgstr "" +msgstr "Forvalgte programmer" #: ../data/libfm-pref-apps.desktop.in.h:2 msgid "Select applications called on click on Web link or e-mail address" msgstr "" +"Velg programmer som skal benyttes ved klikking på nettlenker eller E-" +"postadresser" #: ../data/lxshortcut.desktop.in.h:1 msgid "Shortcut Editor" -msgstr "" +msgstr "Snarveisredigerer" #: ../data/lxshortcut.desktop.in.h:2 msgid "Create new or change existing desktop entry" -msgstr "" +msgstr "Opprett en ny skrivebordsoppføring eller endre en som eksisterer" #: ../data/ui/app-chooser.glade.h:1 msgid "Choose Application" -msgstr "" +msgstr "Velg et program" #: ../data/ui/app-chooser.glade.h:2 msgid "Use selected application to open files" -msgstr "" +msgstr "Bruk det valgte programmet til å åpne filer" #: ../data/ui/app-chooser.glade.h:3 msgid "_Installed Applications" -msgstr "" +msgstr "_Installerte programmer" #: ../data/ui/app-chooser.glade.h:4 msgid "<b>C_ommand line to execute:</b>" -msgstr "" +msgstr "<b>Ledeteksten s_om skal kjøres:</b>" -#: ../data/ui/app-chooser.glade.h:5 -#: ../src/modules/gtk-fileprop-x-desktop.c:275 +#: ../data/ui/app-chooser.glade.h:5 ../src/modules/gtk-fileprop-x-desktop.c:275 msgid "_Browse..." -msgstr "" +msgstr "_Bla gjennom …" #. row 1: "Terminal" GtkCheckButton -#: ../data/ui/app-chooser.glade.h:6 -#: ../src/modules/gtk-fileprop-x-desktop.c:294 +#: ../data/ui/app-chooser.glade.h:6 ../src/modules/gtk-fileprop-x-desktop.c:294 msgid "_Execute in terminal emulator" -msgstr "" +msgstr "_Kjør i terminalemulator" #. row 2: "X-KeepTerminal" GtkCheckButton -#: ../data/ui/app-chooser.glade.h:7 -#: ../src/modules/gtk-fileprop-x-desktop.c:306 +#: ../data/ui/app-chooser.glade.h:7 ../src/modules/gtk-fileprop-x-desktop.c:306 msgid "_Keep terminal window open after command execution" -msgstr "" +msgstr "_Hold terminalvinduet åpent etter kommandokjøring" #: ../data/ui/app-chooser.glade.h:9 #, no-c-format @@ -77,38 +76,44 @@ " <b>%u</b>: Represents a single URI of the file\n" " <b>%U</b>: Represents multiple URIs" msgstr "" +"<b>Disse spesielle kodene kan brukes i ledeteksten:</b>\n" +" <b>%f</b>: Representerer et individuelt filnavn\n" +" <b>%F</b>: Representerer flere filnavn\n" +" <b>%u</b>: Representerer et individuelt URI av filen\n" +" <b>%U</b>: Representerer flere URIer" #: ../data/ui/app-chooser.glade.h:14 msgid "<b>_Application name (optional, set it to keep association)</b>" -msgstr "" +msgstr "<b>_Progr_amnavn (valgfritt, bestem for å beholde tilknytning)</b>" #: ../data/ui/app-chooser.glade.h:15 msgid "Execute custom command line to open files" -msgstr "" +msgstr "Kjør en tilpasset ledetekst for å åpne filer" #: ../data/ui/app-chooser.glade.h:16 msgid "C_ustom Command Line" -msgstr "" +msgstr "T_ilpasset ledetekst" #: ../data/ui/app-chooser.glade.h:17 msgid "_Set selected application as default action for this file type" msgstr "" +"_Velg det valgte programmet som den forvalgte handlingen for denne filtypen" #: ../data/ui/ask-rename.glade.h:1 msgid "Confirm File Replacing" -msgstr "" +msgstr "Bekreft filutbytting" #: ../data/ui/ask-rename.glade.h:2 msgid "_Skip" -msgstr "" +msgstr "_Hopp over" #: ../data/ui/ask-rename.glade.h:3 msgid "_Rename" -msgstr "" +msgstr "End_re navn" #: ../data/ui/ask-rename.glade.h:4 msgid "_Overwrite" -msgstr "" +msgstr "_Overskriv" #: ../data/ui/ask-rename.glade.h:5 msgid "" @@ -116,526 +121,536 @@ "\n" "Do you want to replace the existing file" msgstr "" +"<b>Det er allerede en fil med det samme navnet i denne plasseringen</b>\n" +"\n" +"Vil du overskrive den eksisterende filen" #: ../data/ui/ask-rename.glade.h:8 msgid "with the following file?" -msgstr "" +msgstr "med den følgende filen?" #: ../data/ui/ask-rename.glade.h:9 msgid "_File name:" -msgstr "" +msgstr "_Filnavn:" #: ../data/ui/ask-rename.glade.h:10 msgid "_Apply this option to all existing files" -msgstr "" +msgstr "_Benytt denne innstillingen for alle eksisterende filer" #: ../data/ui/choose-icon.ui.h:1 msgid "Choose An Icon..." -msgstr "" +msgstr "Velg et ikon …" #. genitive case is here: Choose icon from: ... #: ../data/ui/choose-icon.ui.h:3 msgid "system icon theme" -msgstr "" +msgstr "systemikontema" #. genitive case is here: Choose icon from: ... #: ../data/ui/choose-icon.ui.h:5 msgid "image files" -msgstr "" +msgstr "bildefiler" #: ../data/ui/choose-icon.ui.h:6 msgid "<b>Choose icon from:</b>" -msgstr "" +msgstr "<b>Velg et ikon fra:</b>" #: ../data/ui/exec-file.glade.h:1 msgid "Execute File" -msgstr "" +msgstr "Kjør filen" #: ../data/ui/exec-file.glade.h:2 msgid "Execute in _Terminal" -msgstr "" +msgstr "Kjør i terminalen" #: ../data/ui/file-prop.glade.h:1 msgid "File Properties" -msgstr "" +msgstr "Filegenskaper" #: ../data/ui/file-prop.glade.h:2 msgid "Icon of the file in folder view" -msgstr "" +msgstr "Ikonet til filen i mappevisning" #: ../data/ui/file-prop.glade.h:3 msgid "<b>_Name:</b>" -msgstr "" +msgstr "<b>_Navn:</b>" #: ../data/ui/file-prop.glade.h:4 msgid "<b>Location:</b>" -msgstr "" +msgstr "<b>Plassering:</b>" #: ../data/ui/file-prop.glade.h:5 msgid "<b>Target file:</b>" -msgstr "" +msgstr "<b>Målfil:</b>" #: ../data/ui/file-prop.glade.h:6 msgid "<b>File type:</b>" -msgstr "" +msgstr "<b>Filtype:</b>" #: ../data/ui/file-prop.glade.h:7 msgid "<b>Open _with:</b>" -msgstr "" +msgstr "<b>Åpne _med:</b>" #: ../data/ui/file-prop.glade.h:8 msgid "Select the application used to open files of this type " -msgstr "" +msgstr "Velg et program som skal brukes til å åpne filer av denne typen " #: ../data/ui/file-prop.glade.h:9 msgid "<b>Total count of files:</b>" -msgstr "" +msgstr "<b>Totalt antall filer:</b>" #: ../data/ui/file-prop.glade.h:10 msgid "<b>Total size of files:</b>" -msgstr "" +msgstr "<b>Total størrelse på filer:</b>" #: ../data/ui/file-prop.glade.h:11 msgid "<b>Size on disk:</b>" -msgstr "" +msgstr "<b>Plass på disk:</b>" #: ../data/ui/file-prop.glade.h:12 msgid "<b>Last modification:</b>" -msgstr "" +msgstr "<b>Seneste endring:</b>" #: ../data/ui/file-prop.glade.h:13 msgid "<b>Last access:</b>" -msgstr "" +msgstr "<b>Seneste tilgang:</b>" #: ../data/ui/file-prop.glade.h:14 msgid "<b>Last permissions change:</b>" -msgstr "" +msgstr "<b>Seneste endring av tillatelser:</b>" #: ../data/ui/file-prop.glade.h:15 msgid "_General" -msgstr "" +msgstr "_Generelt" #: ../data/ui/file-prop.glade.h:16 msgid "<b>O_wner:</b>" -msgstr "" +msgstr "<b>E_ier:</b>" #: ../data/ui/file-prop.glade.h:17 msgid "<b>G_roup:</b>" -msgstr "" +msgstr "<b>G_ruppe:</b>" #: ../data/ui/file-prop.glade.h:18 msgid "<b>_View content:</b>" -msgstr "" +msgstr "<b>_Vis innhold:</b>" #: ../data/ui/file-prop.glade.h:19 msgid "<b>C_hange content:</b>" -msgstr "" +msgstr "<b>E_ndre innhold:</b>" #: ../data/ui/file-prop.glade.h:20 msgid "<b>_Execute:</b>" -msgstr "" +msgstr "<b>_Kjør:</b>" #: ../data/ui/file-prop.glade.h:21 msgid "<b>Special bits:</b>" -msgstr "" +msgstr "<b>Spesial-bits:</b>" #: ../data/ui/file-prop.glade.h:22 msgid "Who can read content of the file/directory" -msgstr "" +msgstr "Hvem som kan lese filens/mappens innhold" #: ../data/ui/file-prop.glade.h:23 msgid "Who can change content of the file/directory" -msgstr "" +msgstr "Hvem som kan endre filens/mappens innhold" #: ../data/ui/file-prop.glade.h:24 msgid "Who can execute the file or enter the directory" -msgstr "" +msgstr "Hvem som kan kjøre filen eller gå inn i mappen" #: ../data/ui/file-prop.glade.h:25 msgid "Special flags for file execution" -msgstr "" +msgstr "Spesielle flagg for filkjøring" #: ../data/ui/file-prop.glade.h:26 msgid "Special flags for directory access" -msgstr "" +msgstr "Spesielle flagg for mappetilgang" #: ../data/ui/file-prop.glade.h:27 msgid "<b>Access Control</b>" -msgstr "" +msgstr "<b>Tilgangskontroll</b>" #: ../data/ui/file-prop.glade.h:28 msgid "Hidden file" -msgstr "" +msgstr "Skjult fil" #: ../data/ui/file-prop.glade.h:29 msgid "_Permissions" -msgstr "" +msgstr "_Tillatelser" #: ../data/ui/file-prop.glade.h:30 msgid "---" -msgstr "" +msgstr "---" #: ../data/ui/file-prop.glade.h:31 msgid "None" -msgstr "" +msgstr "Ingen" #: ../data/ui/file-prop.glade.h:32 msgctxt "" "It is a directory access bit - 'sticky' - where only owner can delete a file " "from it" msgid "Sticky" -msgstr "" +msgstr "Klister" #: ../data/ui/file-prop.glade.h:33 msgid "Set GID" -msgstr "" +msgstr "Bestem GID" #: ../data/ui/file-prop.glade.h:34 msgid "Sticky & set GID" -msgstr "" +msgstr "Klistre fast og bestem GID" #: ../data/ui/file-prop.glade.h:35 msgctxt "this is a file access mode bit, also known as 'suid'" msgid "Set UID" -msgstr "" +msgstr "Bestem UID" #: ../data/ui/file-prop.glade.h:36 msgid "Set UID & GID" -msgstr "" +msgstr "Bestem UID og GID" #: ../data/ui/file-prop.glade.h:37 msgctxt "" "this is a file access mode - only owner can access the file, for others " "access is denied" msgid "Only owner" -msgstr "" +msgstr "Kun eieren" #: ../data/ui/file-prop.glade.h:38 msgid "Only owner and group" -msgstr "" +msgstr "Kun eieren og gruppen" #: ../data/ui/file-prop.glade.h:39 msgid "Anyone" -msgstr "" +msgstr "Alle" #: ../data/ui/file-prop.glade.h:40 msgid "Nobody" -msgstr "" +msgstr "Ingen" #: ../data/ui/filesearch.glade.h:1 msgid "Bytes" -msgstr "" +msgstr "Byte" #: ../data/ui/filesearch.glade.h:2 msgid "KB" -msgstr "" +msgstr "KB" #: ../data/ui/filesearch.glade.h:3 ../src/base/fm-utils.c:143 msgid "MB" -msgstr "" +msgstr "MB" #: ../data/ui/filesearch.glade.h:4 ../src/base/fm-utils.c:149 msgid "GB" -msgstr "" +msgstr "GB" #: ../data/ui/filesearch.glade.h:5 msgid "Choose Date" -msgstr "" +msgstr "Velg en dato" #: ../data/ui/filesearch.glade.h:6 msgid "Choose a date from the following calendar" -msgstr "" +msgstr "Velg en dato fra den følgende kalenderen" #: ../data/ui/filesearch.glade.h:7 msgid "Search Files" -msgstr "" +msgstr "Søk etter filer" #: ../data/ui/filesearch.glade.h:8 msgid "<b>File _Name Patterns:</b>" -msgstr "" +msgstr "<b>Fil_navnmønstre:</b>" #: ../data/ui/filesearch.glade.h:9 msgid "" "Pattern may be either POSIX shell pattern list (with ',' as separator) or " "POSIX regular expression." msgstr "" +"Mønsteret kan enten være en POSIX-skallmønsterliste (med ',' som adskiller) " +"eller POSIX-ordinæruttrykk." #: ../data/ui/filesearch.glade.h:10 msgid "Case insensiti_ve" -msgstr "" +msgstr "Versal-insensiti_v" #: ../data/ui/filesearch.glade.h:11 msgid "_Use regular expression" -msgstr "" +msgstr "_Benytt" #: ../data/ui/filesearch.glade.h:12 msgid "<b>Plac_es to Search:</b>" -msgstr "" +msgstr "<b>Sted_er å søke i:</b>" #: ../data/ui/filesearch.glade.h:13 msgid "_Search in sub directories" -msgstr "" +msgstr "_Søk i undermapper" #: ../data/ui/filesearch.glade.h:14 msgid "Search _hidden files" -msgstr "" +msgstr "Søk i _skjulte filer" #: ../data/ui/filesearch.glade.h:15 msgid "Name/_Location" -msgstr "" +msgstr "Navn/P_lassering" #: ../data/ui/filesearch.glade.h:16 msgid "<b>File Type</b>" -msgstr "" +msgstr "<b>Filtype</b>" #: ../data/ui/filesearch.glade.h:17 msgid "Only search for files of following types:" -msgstr "" +msgstr "Søk kun etter filer av de følgende typene:" #: ../data/ui/filesearch.glade.h:18 msgid "Te_xt files" -msgstr "" +msgstr "Te_kstfiler" #: ../data/ui/filesearch.glade.h:19 msgid "_Image files" -msgstr "" +msgstr "_Billedfiler" #: ../data/ui/filesearch.glade.h:20 msgid "_Audio files" -msgstr "" +msgstr "_Lydfiler" #: ../data/ui/filesearch.glade.h:21 msgid "_Video files" -msgstr "" +msgstr "_Videofiler" #: ../data/ui/filesearch.glade.h:22 msgid "_Documents" -msgstr "" +msgstr "_Dokumenter" #: ../data/ui/filesearch.glade.h:23 msgid "Folde_rs" -msgstr "" +msgstr "Mappe_r" #: ../data/ui/filesearch.glade.h:24 msgid "Ot_her:" -msgstr "" +msgstr "An_net:" #: ../data/ui/filesearch.glade.h:25 msgid "" "Any valid content type can be entered here. Wildcard '*' is allowed at end " "of the type. Multiple types should be separated with ';'." msgstr "" +"Enhver gyldig innholdstype kan bli skrevet inn her. '*'-jokertegn er tillatt " +"på slutten av typen. Flere typer burde bli adskilt med ';'." #: ../data/ui/filesearch.glade.h:26 msgid "File _Type" -msgstr "" +msgstr "Fil_type" #: ../data/ui/filesearch.glade.h:27 msgid "<b>File Contain_s:</b>" -msgstr "" +msgstr "<b>Filen _inneholder:</b>" #: ../data/ui/filesearch.glade.h:28 msgid "C_ontent" -msgstr "" +msgstr "Innh_old" #: ../data/ui/filesearch.glade.h:29 msgid "<b>File Size</b>" -msgstr "" +msgstr "<b>Filstørrelse</b>" #: ../data/ui/filesearch.glade.h:30 msgid "_Smaller than:" -msgstr "" +msgstr "_Mindre enn:" #: ../data/ui/filesearch.glade.h:31 msgid "_Bigger than:" -msgstr "" +msgstr "_Større enn:" #: ../data/ui/filesearch.glade.h:32 msgid "<b>Last Modified Time</b>" -msgstr "" +msgstr "<b>Tidspunkt for seneste endring</b>" #: ../data/ui/filesearch.glade.h:33 ../src/gtk/fm-gtk-file-launcher.c:670 #: ../src/gtk/fm-gtk-file-launcher.c:677 msgid "(None)" -msgstr "" +msgstr "(Ingen)" #: ../data/ui/filesearch.glade.h:34 msgid "_Earlier than:" -msgstr "" +msgstr "_Tidligere enn:" #: ../data/ui/filesearch.glade.h:35 msgid "L_ater than:" -msgstr "" +msgstr "S_enere enn:" #: ../data/ui/filesearch.glade.h:36 msgid "_Properties" -msgstr "" +msgstr "_Egenskaper" #: ../data/ui/preferred-apps.glade.h:2 msgid "<b>Web Browser</b>" -msgstr "" +msgstr "<b>Nettleser</b>" #: ../data/ui/preferred-apps.glade.h:3 msgid "The preferred Web Browser will be used to open hyperlinks." -msgstr "" +msgstr "Den foretrukne nettleseren vil bli brukt til å åpne hyperlenker." #: ../data/ui/preferred-apps.glade.h:4 msgid "<b>Mail Client</b>" -msgstr "" +msgstr "<b>E-postklient</b>" #: ../data/ui/preferred-apps.glade.h:5 msgid "" "The preferred Mail Client will be used to compose emails when you click on e-" "mail addresses." msgstr "" +"Den foretrukne E-postklienten vil bli brukt til å skrive E-poster når du " +"klikker på E-postadresser." #: ../data/ui/preferred-apps.glade.h:6 msgid "<b>Terminal Emulator</b>" -msgstr "" +msgstr "<b>Terminalemulator</b>" #: ../data/ui/preferred-apps.glade.h:7 msgid "Command line:" -msgstr "" +msgstr "Ledetekst:" #: ../data/ui/preferred-apps.glade.h:8 msgid "System Applications" -msgstr "" +msgstr "Systemprogrammer" #: ../data/ui/preferred-apps.glade.h:9 msgid "File Associations" -msgstr "" +msgstr "Filtilknytninger" #. To: <Destination folder> ex. Copy file to..., Move file to...etc. #: ../data/ui/progress.glade.h:2 msgid "<b>To:</b>" -msgstr "" +msgstr "<b>Til:</b>" #. Preparing to do some file operation (Copy, Move, Delete...) #: ../data/ui/progress.glade.h:4 msgid "Preparing..." -msgstr "" +msgstr "Forbereder..." #: ../data/ui/progress.glade.h:5 msgid "<b>Data transferred:</b>" -msgstr "" +msgstr "<b>Data overført:</b>" #: ../data/ui/progress.glade.h:6 msgid "<b>Time remaining:</b>" -msgstr "" +msgstr "<b>Gjenværende tid:</b>" #: ../data/ui/progress.glade.h:7 msgid "<b>Errors occurred:</b>" -msgstr "" +msgstr "<b>Feil oppstod:</b>" #: ../src/base/fm-action.c:272 msgid "Empty value" -msgstr "" +msgstr "Tom verdi" #: ../src/base/fm-action.c:280 msgid "Invalid selection" -msgstr "" +msgstr "Ugyldig utvalg" #. ---- GFile implementation ---- #: ../src/base/fm-action.c:807 ../src/job/fm-file-ops-job.c:271 #: ../src/modules/vfs-menu.c:1176 ../src/modules/vfs-search.c:928 msgid "Operation not supported" -msgstr "" +msgstr "Handlingen er ikke støttet" #: ../src/base/fm-file-launcher.c:87 #, c-format msgid "Invalid desktop entry file: '%s'" -msgstr "" +msgstr "Ugyldig skrivebordsoppføringsfil: '%s'" #: ../src/base/fm-file-launcher.c:253 ../src/base/fm-file-launcher.c:407 #, c-format msgid "Could not determine content type of file '%s' to launch it" msgstr "" +"Klarte ikke å bestemme innholdstypen til '%s'-filen for å kunne kjøre den" #: ../src/base/fm-file-launcher.c:292 #, c-format msgid "No default application is set to launch URIs %s://" -msgstr "" +msgstr "Ingen forvalgte programmer er valgt til å åpne URIer %s://" #: ../src/base/fm-file-launcher.c:360 #, c-format msgid "Cannot set working directory to '%s': %s" -msgstr "" +msgstr "Kan ikke sette utgangspunktmappen til '%s': %s" #: ../src/base/fm-file-launcher.c:454 ../src/base/fm-templates.c:1104 #, c-format msgid "No default application is set for MIME type %s" -msgstr "" +msgstr "Ingen standardprogrammer er valgt for MIME-typen %s" #: ../src/base/fm-path.c:179 ../src/gtk/fm-places-model.c:848 #: ../src/gtk/fm-places-model.c:1016 msgid "Devices" -msgstr "" +msgstr "Enheter" #: ../src/base/fm-path.c:185 ../src/gtk/fm-places-model.c:866 #: ../src/gtk/fm-places-model.c:1031 msgid "Network" -msgstr "" +msgstr "Nettverk" #: ../src/base/fm-path.c:1316 ../src/gtk/fm-places-model.c:898 msgid "Trash Can" -msgstr "" +msgstr "Papirkurv" #: ../src/base/fm-mime-type.c:89 msgid "shortcut to URI" -msgstr "" +msgstr "snarvei til URI" #: ../src/base/fm-templates.c:1043 msgid "fm_template_create_file: invalid argument" -msgstr "" +msgstr "fm_template_create_file: ugyldig argument" #: ../src/base/fm-terminal.c:256 msgid "No terminal emulator is set in libfm config" -msgstr "" +msgstr "Ingen terminalemulator er valgt i libfm-oppsettet" #: ../src/base/fm-thumbnailer.c:285 msgid "Invalid description of thumbnailer application" -msgstr "" +msgstr "Ugyldig beskrivelse av miniatyrbildeprogrammet" #: ../src/base/fm-utils.c:137 msgid "kB" -msgstr "" +msgstr "kB" #: ../src/base/fm-utils.c:154 msgid "TB" -msgstr "" +msgstr "TB" #: ../src/base/fm-utils.c:165 #, c-format msgid "%u byte" msgid_plural "%u bytes" -msgstr0 "" -msgstr1 "" +msgstr0 "%u byte" +msgstr1 "%u bytes" #: ../src/base/fm-utils.c:174 msgid "KiB" -msgstr "" +msgstr "KiB" #: ../src/base/fm-utils.c:180 msgid "MiB" -msgstr "" +msgstr "MiB" #: ../src/base/fm-utils.c:186 msgid "GiB" -msgstr "" +msgstr "GiB" #: ../src/base/fm-utils.c:191 msgid "TiB" -msgstr "" +msgstr "TiB" #: ../src/base/fm-utils.c:573 #, c-format msgid "The URI subpath '%s' contains invalid escaped characters" -msgstr "" +msgstr "URI-underfilbanen '%s' inneholder ugyldige uinngjerdede tegn" #: ../src/extra/fm-xml-file.c:206 #, c-format msgid "Duplicate handler for tag <%s>" -msgstr "" +msgstr "Duplikathåndterer for stemplet <%s>" #: ../src/extra/fm-xml-file.c:300 #, c-format @@ -643,6 +658,8 @@ "Failed to parse '%-.*s', which should have been a digit inside a character " "reference (ê for example) - perhaps the digit is too large" msgstr "" +"Klarte ikke å tolke '%-.*s', som burde ha vært et tegn inni en tegnreferanse " +"(for eksempel ê) - kanskje er sifferet for stort" #: ../src/extra/fm-xml-file.c:311 #, c-format @@ -651,22 +668,27 @@ "ampersand character without intending to start an entity - escape ampersand " "as &" msgstr "" +"Tegnreferansen sluttet ikke med et semikolon; mest sannsynlig brukte du et " +"ampersand-tegn uten at du mente å starte en enhet - avslutt ampersander som " +"&" #: ../src/extra/fm-xml-file.c:337 #, c-format msgid "Character reference '%-.*s' does not encode a permitted character" -msgstr "" +msgstr "Tegnreferansen '%-.*s' omkoder ikke et tillatt tegn" #: ../src/extra/fm-xml-file.c:374 #, c-format msgid "" "Empty entity '&;' seen; valid entities are: & " < > '" msgstr "" +"En tom enhet '&;' er observert; gyldige enheter er: & " < > " +"'" #: ../src/extra/fm-xml-file.c:381 #, c-format msgid "Entity name '%-.*s' is not known" -msgstr "" +msgstr "Enhetsnavnet '%-.*s' er ukjent" #: ../src/extra/fm-xml-file.c:385 #, c-format @@ -674,332 +696,338 @@ "Entity did not end with a semicolon; most likely you used an ampersand " "character without intending to start an entity - escape ampersand as &" msgstr "" +"Enheten sluttet ikke med et semikolon; mest sannsynlig brukte du et " +"ampersand-tegn uten at du mente å starte en enhet - avslutt ampersander som " +"&" #: ../src/extra/fm-xml-file.c:595 msgid "Space isn't allowed in the close tag" -msgstr "" +msgstr "Mellomrom er ikke tillatt i lukkingsstemplet" #: ../src/extra/fm-xml-file.c:604 #, c-format msgid "Element '%s' was closed but no element was opened" -msgstr "" +msgstr "'%s'-elementet ble lukket, men ingen elementer ble åpnet" #: ../src/extra/fm-xml-file.c:620 #, c-format msgid "Element '%s' was closed but the currently open element is '%s'" -msgstr "" +msgstr "'%s'-elementet ble lukket, men det nåværende åpne elementet er '%s'" #: ../src/extra/fm-xml-file.c:676 #, c-format msgid "Invalid char '%c' at start of attribute value" -msgstr "" +msgstr "Ugyldig tegn '%c' ved starten av attributtverdien" #: ../src/extra/fm-xml-file.c:687 #, c-format msgid "Invalid char '%c' at end of attribute value, expected '%c'" -msgstr "" +msgstr "Ugyldig tegn '%c' ved starten av attributtverdien, forventet '%c'" #: ../src/extra/fm-xml-file.c:835 msgid "Document ended unexpectedly" -msgstr "" +msgstr "Dokumentet tok uventet slutt" #: ../src/extra/fm-xml-file.c:843 msgid "Document was empty or contained only whitespace" -msgstr "" +msgstr "Dokumentet var tomt eller inneholdt kun tomrom" #: ../src/extra/fm-xml-file.c:1259 msgid "fm_xml_file_to_data: XML data error" -msgstr "" +msgstr "fm_xml_file_to_data: XML-datafeil" #: ../src/gtk/fm-app-chooser-combo-box.c:217 msgid "Customize" -msgstr "" +msgstr "Tilpass" #: ../src/gtk/fm-app-chooser-dlg.c:325 #, c-format msgid "<b>Select an application to open \"%s\" files</b>" -msgstr "" +msgstr "<b>Velg et program å åpne «%s»-filer med</b>" #: ../src/gtk/fm-app-menu-view.c:207 msgid "Installed Applications" -msgstr "" +msgstr "Installerte programmer" #: ../src/gtk/fm-dir-tree-model.c:421 ../src/gtk/fm-dir-tree-model.c:1213 msgid "<No subfolders>" -msgstr "" +msgstr "<Ingen undermapper>" #: ../src/gtk/fm-dir-tree-model.c:423 ../src/gtk/fm-dir-tree-model.c:1214 msgid "Loading..." -msgstr "" +msgstr "Laster ..." #: ../src/gtk/fm-dir-tree-view.c:546 ../src/gtk/fm-side-pane.c:647 msgid "Shows tree of directories in sidebar" -msgstr "" +msgstr "Viser et tre av mapper i sidelinjen" #: ../src/gtk/fm-dnd-dest.c:412 msgid "_Cancel" -msgstr "" +msgstr "_Avbryt" #: ../src/gtk/fm-dnd-dest.c:413 msgid "C_opy Here" -msgstr "" +msgstr "K_opier hit" #: ../src/gtk/fm-dnd-dest.c:414 msgid "_Move Here" -msgstr "" +msgstr "_Flytt hit" #. Note to translators: Link in not noun but verb here #: ../src/gtk/fm-dnd-dest.c:416 msgid "_Link Here" -msgstr "" +msgstr "_Lenk hit" #: ../src/gtk/fm-dnd-dest.c:876 msgid "XDirectSave failed." -msgstr "" +msgstr "XDirectSave mislyktes." #: ../src/gtk/fm-file-menu.c:151 msgid "_Open" -msgstr "" +msgstr "_Åpne" #: ../src/gtk/fm-file-menu.c:152 msgid "Open _With..." -msgstr "" +msgstr "Åpne _med …" #: ../src/gtk/fm-file-menu.c:153 msgid "Open _With" -msgstr "" +msgstr "Åpne _med" #: ../src/gtk/fm-file-menu.c:158 msgid "Copy Pa_th(s)" -msgstr "" +msgstr "Kopier fil_banen(e)" #: ../src/gtk/fm-file-menu.c:159 msgid "H_ide" -msgstr "" +msgstr "S_kjul" #: ../src/gtk/fm-file-menu.c:160 msgid "Unh_ide" -msgstr "" +msgstr "V_is" #: ../src/gtk/fm-file-menu.c:161 msgid "_Add to Bookmarks" -msgstr "" +msgstr "_Legg til i bokmerkene" #: ../src/gtk/fm-file-menu.c:162 msgid "_Rename..." -msgstr "" +msgstr "_Gi nytt navn …" #: ../src/gtk/fm-file-menu.c:163 msgid "Co_mpress..." -msgstr "" +msgstr "Ko_mprimer …" #: ../src/gtk/fm-file-menu.c:164 msgid "Extract _Here" -msgstr "" +msgstr "Utvinn _hit" #: ../src/gtk/fm-file-menu.c:165 msgid "E_xtract To..." -msgstr "" +msgstr "U_tvinn til …" #: ../src/gtk/fm-file-menu.c:166 ../src/gtk/fm-folder-view.c:198 msgid "Prop_erties" -msgstr "" +msgstr "Egenskap_er" #. Note to translators: Trash in not noun but verb here #: ../src/gtk/fm-file-menu.c:272 ../src/gtk/fm-file-menu.c:533 msgid "Move to _Trash" -msgstr "" +msgstr "Flytt _til papirkurven" #: ../src/gtk/fm-file-menu.c:794 msgid "Your bookmarks already have a bookmark for this folder." -msgstr "" +msgstr "Bokmerkene dine har allerede et bokmerke for denne mappen." #: ../src/gtk/fm-file-properties.c:368 msgid "Image files" -msgstr "" +msgstr "Billedfiler" #: ../src/gtk/fm-file-properties.c:494 ../src/gtk/fm-file-properties.c:503 msgid "byte" msgid_plural "bytes" -msgstr0 "" -msgstr1 "" +msgstr0 "byte" +msgstr1 "bytes" #: ../src/gtk/fm-file-properties.c:510 #, c-format msgid "scanning... %d" -msgstr "" +msgstr "skanner… %d" #: ../src/gtk/fm-file-properties.c:588 msgid "Please enter a valid user name or numeric id." -msgstr "" +msgstr "Vennligst skriv inn et gyldig brukernavn eller numerisk ID." #: ../src/gtk/fm-file-properties.c:618 msgid "Please enter a valid group name or numeric id." -msgstr "" +msgstr "Vennligst skriv inn et gyldig gruppenavn eller numerisk ID." #. FIXME: may special bits and exec flags still be messed up? #: ../src/gtk/fm-file-properties.c:827 msgid "" "Do you want to recursively apply these changes to all files and sub-folders?" msgstr "" +"Vil du benytte disse endringene rekursivt til alle filer og undermapper?" #: ../src/gtk/fm-file-properties.c:960 msgid "Hide or unhide the file" -msgstr "" +msgstr "Skjul eller vis filen" #: ../src/gtk/fm-file-properties.c:965 msgid "This file is hidden because its name starts with a dot ('.')." -msgstr "" +msgstr "Filen er skjult fordi dens navn begynner med et punktum ('.')." #: ../src/gtk/fm-file-properties.c:969 msgid "" "Files on this system are hidden if their name starts with a dot ('.'). Hit " "<Ctrl+H> to toggle displaying hidden files." msgstr "" +"Filer på dette systemet er skjult dersom navnet dens begynner med et punktum " +"('.'). Trykk <Ctrl+H> for å skru av/på visning av skjulte filer." #: ../src/gtk/fm-file-properties.c:1026 msgid "scanning..." -msgstr "" +msgstr "skanner …" #: ../src/gtk/fm-file-properties.c:1088 msgid "<b>_Access content:</b>" -msgstr "" +msgstr "<b>_Tilgang til innhold:</b>" #: ../src/gtk/fm-file-properties.c:1239 msgid "Files of different types" -msgstr "" +msgstr "Filer av forskjellige typer" #: ../src/gtk/fm-file-properties.c:1283 msgid "<b>File:</b>" -msgstr "" +msgstr "<b>Fil:</b>" #: ../src/gtk/fm-file-properties.c:1349 msgid "Multiple files" -msgstr "" +msgstr "Flere filer" #. columns visible to the users #: ../src/gtk/fm-folder-model.c:190 msgid "Name" -msgstr "" +msgstr "Navn" #: ../src/gtk/fm-folder-model.c:191 msgid "Description" -msgstr "" +msgstr "Beskrivelse" #: ../src/gtk/fm-folder-model.c:192 msgid "Size" -msgstr "" +msgstr "Størrelse" #: ../src/gtk/fm-folder-model.c:193 msgid "Permissions" -msgstr "" +msgstr "Tillatelser" #: ../src/gtk/fm-folder-model.c:194 msgid "Owner" -msgstr "" +msgstr "Eier" #: ../src/gtk/fm-folder-model.c:195 msgid "Modified" -msgstr "" +msgstr "Sist endret" #: ../src/gtk/fm-folder-model.c:196 msgid "Location" -msgstr "" +msgstr "Lokalisering" #: ../src/gtk/fm-folder-model.c:197 msgid "Extension" -msgstr "" +msgstr "Utvidelse" #: ../src/gtk/fm-folder-view.c:178 msgid "Create _New..." -msgstr "" +msgstr "Opprett _ny …" #: ../src/gtk/fm-folder-view.c:179 msgid "Folder" -msgstr "" +msgstr "Mappe" #: ../src/gtk/fm-folder-view.c:182 msgid "Empty File" -msgstr "" +msgstr "Tom fil" #: ../src/gtk/fm-folder-view.c:194 msgid "_Invert Selection" -msgstr "" +msgstr "_Inverter utvalg" #: ../src/gtk/fm-folder-view.c:195 msgid "_Sort Files" -msgstr "" +msgstr "_Sortér filer" #: ../src/gtk/fm-folder-view.c:196 msgid "_Rename Folder..." -msgstr "" +msgstr "_Gi nytt navn til mappen …" #: ../src/gtk/fm-folder-view.c:197 msgid "Folder Prop_erties" -msgstr "" +msgstr "Mappe-egenskap_er" #: ../src/gtk/fm-folder-view.c:205 msgid "Show _Hidden" -msgstr "" +msgstr "Vis s_kjulte" #. Note to translators: "Mingle..." means "Do not put folders before files" but make the translation as short as possible, please! #: ../src/gtk/fm-folder-view.c:207 msgid "Mingle _Files and Folders" -msgstr "" +msgstr "Bland _filer og mapper" #: ../src/gtk/fm-folder-view.c:208 msgid "_Ignore Name Case" -msgstr "" +msgstr "_Ignorer store/små bokstaver i navn" #: ../src/gtk/fm-folder-view.c:219 msgid "By _Name" -msgstr "" +msgstr "Etter _navn" #: ../src/gtk/fm-folder-view.c:220 msgid "By _Modification Time" -msgstr "" +msgstr "Etter _endringstidspunkt" #: ../src/gtk/fm-folder-view.c:221 msgid "By _Size" -msgstr "" +msgstr "Etter _størrelse" #: ../src/gtk/fm-folder-view.c:222 msgid "By File _Type" -msgstr "" +msgstr "Etter fil_type" #: ../src/gtk/fm-folder-view.c:845 msgid "Enter a name for the newly created folder:" -msgstr "" +msgstr "Angi navn til den nye mappen:" #: ../src/gtk/fm-folder-view.c:846 msgid "Creating New Folder" -msgstr "" +msgstr "Oppretter ny mappe" #: ../src/gtk/fm-folder-view.c:859 msgid "Enter a name for empty file:" -msgstr "" +msgstr "Skriv inn navnet til den tomme filen:" #: ../src/gtk/fm-folder-view.c:860 msgid "Creating ..." -msgstr "" +msgstr "Oppretter …" #: ../src/gtk/fm-folder-view.c:866 msgid "New" -msgstr "" +msgstr "Nye" #: ../src/gtk/fm-folder-view.c:876 #, c-format msgid "Enter a name for the new %s:" -msgstr "" +msgstr "Angi navn til den nye %sen:" #: ../src/gtk/fm-folder-view.c:879 #, c-format msgid "Creating %s" -msgstr "" +msgstr "Oppretter %s" #: ../src/gtk/fm-folder-view.c:883 msgid "_Run default application on file after creation" -msgstr "" +msgstr "_Kjør standardprogrammet på filen etter oppretting" #: ../src/gtk/fm-gtk-file-launcher.c:144 #, c-format @@ -1007,151 +1035,153 @@ "This text file '%s' seems to be an executable script.\n" "What do you want to do with it?" msgstr "" +"'%s'-testfilen ser ut til å være et kjørbart skript.\n" +"Hva vil du gjøre med det?" #: ../src/gtk/fm-gtk-file-launcher.c:151 #, c-format msgid "This file '%s' is executable. Do you want to execute it?" -msgstr "" +msgstr "'%s'-filen er kjørbar. Vil du kjøre den?" #. show error if no paths are added #: ../src/gtk/fm-gtk-file-launcher.c:736 msgid "No folders are specified." -msgstr "" +msgstr "Ingen mapper er valgt." #: ../src/gtk/fm-gtk-file-launcher.c:775 ../src/gtk/fm-gtk-utils.c:555 msgid "Select Folder" -msgstr "" +msgstr "Velg mappe" #. g_message("(!) %s", msg); #: ../src/gtk/fm-gtk-utils.c:71 msgid "Error" -msgstr "" +msgstr "Feil" #: ../src/gtk/fm-gtk-utils.c:100 ../src/gtk/fm-gtk-utils.c:131 msgid "Confirm" -msgstr "" +msgstr "Bekreft" #: ../src/gtk/fm-gtk-utils.c:185 msgid "Question" -msgstr "" +msgstr "Spørsmål" #: ../src/gtk/fm-gtk-utils.c:709 msgid "Only system administrators have the permission to do this." -msgstr "" +msgstr "Kun systemadministratorer har tillatelse til å gjøre dette." #: ../src/gtk/fm-gtk-utils.c:924 #, c-format msgid "Do you want to move the file '%s' to trash can?" -msgstr "" +msgstr "Vil du flytte '%s'-filen til papirkurven?" #: ../src/gtk/fm-gtk-utils.c:929 #, c-format msgid "Do you want to move the %d selected file to trash can?" msgid_plural "Do you want to move the %d selected files to trash can?" -msgstr0 "" -msgstr1 "" +msgstr0 "Vil du flytte %d valgt fil til papirkurven?" +msgstr1 "Vil du flytte de %d valgte filene til papirkurven?" #: ../src/gtk/fm-gtk-utils.c:989 #, c-format msgid "Do you want to delete the file '%s'?" -msgstr "" +msgstr "Er du sikker på at du vil slette '%s'-filen?" #: ../src/gtk/fm-gtk-utils.c:994 #, c-format msgid "Do you want to delete the %d selected file?" msgid_plural "Do you want to delete the %d selected files?" -msgstr0 "" -msgstr1 "" +msgstr0 "Vil du slette %d valgt fil?" +msgstr1 "Vil du slette de %d valgte filene?" #: ../src/gtk/fm-gtk-utils.c:1093 msgid "Rename File" -msgstr "" +msgstr "Gi nytt navn til fil" #: ../src/gtk/fm-gtk-utils.c:1094 msgid "Please enter a new name:" -msgstr "" +msgstr "Vennligst skriv inn et nytt navn:" #: ../src/gtk/fm-gtk-utils.c:1166 msgid "Are you sure you want to empty the trash can?" -msgstr "" +msgstr "Er du sikker på at du vil tømme papirkurven?" #: ../src/gtk/fm-path-entry.c:675 msgid "Pa_ste and Go" -msgstr "" +msgstr "Li_m inn og gå til" #: ../src/gtk/fm-path-entry.c:734 msgid "Folder location bar" -msgstr "" +msgstr "Mappeplasseringslinje" #: ../src/gtk/fm-places-model.c:781 ../src/gtk/fm-places-model.c:995 msgid "Home Folder" -msgstr "" +msgstr "Hjemmemappe" #: ../src/gtk/fm-places-model.c:797 ../src/gtk/fm-places-model.c:1003 msgid "Desktop" -msgstr "" +msgstr "Skrivebord" #: ../src/gtk/fm-places-model.c:815 ../src/gtk/fm-places-model.c:1023 #: ../src/modules/vfs-menu.c:1538 msgid "Applications" -msgstr "" +msgstr "Applikasjoner" #: ../src/gtk/fm-places-model.c:831 ../src/gtk/fm-places-model.c:1009 msgid "Filesystem Root" -msgstr "" +msgstr "Filsystem-rotmappen" #: ../src/gtk/fm-places-view.c:131 msgid "_Mount Volume" -msgstr "" +msgstr "_Montér volum" #: ../src/gtk/fm-places-view.c:132 msgid "_Unmount Volume" -msgstr "" +msgstr "_Avmontér volum" #: ../src/gtk/fm-places-view.c:133 msgid "_Eject Removable Media" -msgstr "" +msgstr "_Ta ut fjernbart medie" #: ../src/gtk/fm-places-view.c:134 msgid "_Format Volume" -msgstr "" +msgstr "_Formater volumet" #: ../src/gtk/fm-places-view.c:150 msgid "_Rename Bookmark Item" -msgstr "" +msgstr "_Gi nytt navn til bokmerkeelement" #: ../src/gtk/fm-places-view.c:151 msgid "Re_move from Bookmarks" -msgstr "" +msgstr "Fjern fra bok_merker" #: ../src/gtk/fm-places-view.c:152 msgid "Move Bookmark _Up" -msgstr "" +msgstr "Flytt bokmerket _opp" #: ../src/gtk/fm-places-view.c:153 msgid "Move Bookmark _Down" -msgstr "" +msgstr "Flytt bokmerket _ned" #: ../src/gtk/fm-places-view.c:166 ../src/modules/gtk-menu-trash.c:87 #: ../src/modules/gtk-menu-trash.c:114 msgid "_Empty Trash Can" -msgstr "" +msgstr "_Tøm papirkurven" #: ../src/gtk/fm-places-view.c:533 ../src/gtk/fm-side-pane.c:645 msgid "Shows list of common places, devices, and bookmarks in sidebar" -msgstr "" +msgstr "Viser en liste over vanlige steder, enheter, og bokmerker i sidelinjen" #: ../src/gtk/fm-places-view.c:1124 msgid "Rename Bookmark Item" -msgstr "" +msgstr "Gi nytt navn til bokmerkeelement" #: ../src/gtk/fm-places-view.c:1125 msgid "Enter a new name:" -msgstr "" +msgstr "Skriv inn et nytt navn:" #: ../src/gtk/fm-progress-dlg.c:135 msgid ": " -msgstr "" +msgstr ": " #: ../src/gtk/fm-progress-dlg.c:213 ../src/gtk/fm-progress-dlg.c:231 #, c-format @@ -1160,6 +1190,9 @@ "Size: %s\n" "Modified: %s" msgstr "" +"Type: %s\n" +"Størrelse: %s\n" +"Endret: %s" #: ../src/gtk/fm-progress-dlg.c:219 ../src/gtk/fm-progress-dlg.c:244 #, c-format @@ -1167,22 +1200,24 @@ "Type: %s\n" "Modified: %s" msgstr "" +"Type: %s\n" +"Endret: %s" #: ../src/gtk/fm-progress-dlg.c:343 msgid "<b>Errors occurred before file operation was stopped.</b>" -msgstr "" +msgstr "<b>Feil oppstod før filhandlingen ble avbrutt.</b>" #: ../src/gtk/fm-progress-dlg.c:345 msgid "Cancelled" -msgstr "" +msgstr "Avbrutt" #: ../src/gtk/fm-progress-dlg.c:349 msgid "<b>The file operation was completed with errors.</b>" -msgstr "" +msgstr "<b>Filhandlingen ble fullført med feil.</b>" #: ../src/gtk/fm-progress-dlg.c:351 msgid "Finished" -msgstr "" +msgstr "Fullført" #: ../src/gtk/fm-progress-dlg.c:373 msgid "" @@ -1190,551 +1225,555 @@ "don't support this operation.\n" "Do you want to delete them instead?" msgstr "" +"Noen filer kan ikke bli flyttet til papirkurven, ettersom de underliggende " +"filsystemene ikke støtter denne handlingen.\n" +"Vil du slette dem i stedet?" #: ../src/gtk/fm-progress-dlg.c:414 ../src/gtk/fm-progress-dlg.c:563 msgid "_Pause" -msgstr "" +msgstr "_Sett på pause" #: ../src/gtk/fm-progress-dlg.c:422 msgid "_Resume" -msgstr "" +msgstr "_Fortsett" #: ../src/gtk/fm-progress-dlg.c:597 msgid ", " -msgstr "" +msgstr ", " #. translators: it is part of "Moving files:" or "Moving xxx.txt" #: ../src/gtk/fm-progress-dlg.c:617 msgid "Moving" -msgstr "" +msgstr "Flytter" #. translators: it is part of "Copying files:" or "Copying xxx.txt" #: ../src/gtk/fm-progress-dlg.c:621 msgid "Copying" -msgstr "" +msgstr "Kopierer" #. translators: it is part of "Trashing files:" or "Trashing xxx.txt" #: ../src/gtk/fm-progress-dlg.c:625 msgid "Trashing" -msgstr "" +msgstr "Kaster" #. translators: it is part of "Deleting files:" or "Deleting xxx.txt" #: ../src/gtk/fm-progress-dlg.c:629 msgid "Deleting" -msgstr "" +msgstr "Sletter" #. translators: it is part of "Creating link /path/xxx.txt" #: ../src/gtk/fm-progress-dlg.c:633 msgid "Creating link" -msgstr "" +msgstr "Oppretter lenke" #. translators: 'In:' string is followed by destination folder path #: ../src/gtk/fm-progress-dlg.c:635 msgid "<b>In:</b>" -msgstr "" +msgstr "<b>Er i:</b>" #: ../src/gtk/fm-progress-dlg.c:636 msgid "Creating links to files" -msgstr "" +msgstr "Oppretter lenker til filer" #. translators: it is part of "Changing attributes of xxx.txt" #: ../src/gtk/fm-progress-dlg.c:643 msgid "Changing attributes of" -msgstr "" +msgstr "Endrer attributtene til" #: ../src/gtk/fm-progress-dlg.c:644 msgid "Changing attributes of files" -msgstr "" +msgstr "Endrer attributtene til filer" #. translators: it is part of "Restoring files:" or "Restoring xxx.txt" #: ../src/gtk/fm-progress-dlg.c:650 msgid "Restoring" -msgstr "" +msgstr "Gjenoppretter" #. note to translators: resulting string is such as "Deleting files" #: ../src/gtk/fm-progress-dlg.c:660 #, c-format msgid "%s files" -msgstr "" +msgstr "%s filer" #: ../src/gtk/fm-progress-dlg.c:663 msgid "<b>File operation is in progress...</b>" -msgstr "" +msgstr "<b>Filhandling pågår...</b>" #. note to translators: resulting string is such as "Deleting file" #: ../src/gtk/fm-progress-dlg.c:669 #, c-format msgid "<b>%s file:</b>" -msgstr "" +msgstr "<b>%s fil:</b>" #. note to translators: resulting string is such as "Deleting files" #: ../src/gtk/fm-progress-dlg.c:672 #, c-format msgid "<b>%s files:</b>" -msgstr "" +msgstr "<b>%s filer:</b>" #: ../src/gtk/fm-side-pane.c:66 msgid "_Off" -msgstr "" +msgstr "_Av" #: ../src/gtk/fm-side-pane.c:67 msgid "_Places" -msgstr "" +msgstr "_Steder" #: ../src/gtk/fm-side-pane.c:68 msgid "_Directory Tree" -msgstr "" +msgstr "_Mappetre" #: ../src/gtk/fm-side-pane.c:69 msgid "_Remote" -msgstr "" +msgstr "_Eksternt" #: ../src/gtk/fm-side-pane.c:428 ../src/gtk/fm-side-pane.c:621 msgid "Places" -msgstr "" +msgstr "Steder" #: ../src/gtk/fm-side-pane.c:438 ../src/gtk/fm-side-pane.c:623 msgid "Directory Tree" -msgstr "" +msgstr "Mappetre" #: ../src/gtk/fm-standard-view.c:255 msgid "View of folder contents" -msgstr "" +msgstr "Visning av mappeinnhold" #: ../src/gtk/fm-standard-view.c:818 #, c-format msgid "_Hide %s" -msgstr "" +msgstr "_Skjul %s" #: ../src/gtk/fm-standard-view.c:826 msgid "_Move Left" -msgstr "" +msgstr "_Flytt til venstre" #: ../src/gtk/fm-standard-view.c:832 msgid "Move _Right" -msgstr "" +msgstr "Flytt til høy_re" #: ../src/gtk/fm-standard-view.c:855 #, c-format msgid "Show %s" -msgstr "" +msgstr "Vis %s" #: ../src/gtk/fm-standard-view.c:867 msgid "_Forget Width" -msgstr "" +msgstr "_Glem bredden" #: ../src/gtk/fm-standard-view.c:1859 msgid "_Icon View" -msgstr "" +msgstr "_Ikonvisning" #: ../src/gtk/fm-standard-view.c:1860 msgid "_Compact View" -msgstr "" +msgstr "_Kompakt visning" #: ../src/gtk/fm-standard-view.c:1861 msgid "_Thumbnail View" -msgstr "" +msgstr "_Miniatyrbildevisning" #: ../src/gtk/fm-standard-view.c:1862 msgid "Detailed _List View" -msgstr "" +msgstr "Detaljert _listevisning" #: ../src/gtk/fm-tab-label.c:159 msgid "Changes active tab" -msgstr "" +msgstr "Endrer den aktive fanen" #: ../src/job/fm-dir-list-job.c:238 ../src/job/fm-dir-list-job.c:251 #: ../src/job/fm-dir-list-job.c:363 #, c-format msgid "The specified directory '%s' is not valid" -msgstr "" +msgstr "Den spesifiserte mappen '%s' er ugyldig" #: ../src/job/fm-file-ops-job.c:529 ../src/job/fm-file-ops-job.c:604 msgid "Cannot access destination file" -msgstr "" +msgstr "Får ikke tilgang til målfilen" #: ../src/job/fm-file-ops-job.c:650 msgid "Cannot create a link on non-native filesystem" -msgstr "" +msgstr "Kan ikke opprette en lenke i et ikke-Unix-filsystem" #: ../src/job/fm-file-ops-job-delete.c:501 #, c-format msgid "Cannot untrash file '%s': original path not known" msgstr "" +"Kan ikke gjenopprette '%s'-filen: den opprinnelige filbanen dens er ukjent" #: ../src/job/fm-file-ops-job-xfer.c:58 msgid "Destination does not exist" -msgstr "" +msgstr "Målstedet finnes ikke" #: ../src/job/fm-file-ops-job-xfer.c:63 msgid "Source and destination are the same." -msgstr "" +msgstr "Kilden og målstedet er det samme." #: ../src/job/fm-file-ops-job-xfer.c:70 msgid "Cannot move a folder into its sub folder" -msgstr "" +msgstr "Kan ikke flytte en mappe inn i dens undermappe" #: ../src/job/fm-file-ops-job-xfer.c:72 msgid "Cannot copy a folder into its sub folder" -msgstr "" +msgstr "Kan ikke kopiere inn en mappe i dens undermappe" #: ../src/job/fm-file-ops-job-xfer.c:74 msgid "Destination is a sub folder of source" -msgstr "" +msgstr "Målbanen er en undermappe av kilden" #: ../src/job/fm-file-ops-job-xfer.c:391 #, c-format msgid "Cannot copy file '%s': not supported" -msgstr "" +msgstr "Kan ikke kopiere filen '%s': ikke støttet" #: ../src/job/fm-file-ops-job-change-attr.c:314 #, c-format msgid "Setting display name can be done only for single file" -msgstr "" +msgstr "Å bestemme visningsnavn kan kun gjøres for én fil om gangen" #: ../src/job/fm-file-ops-job-change-attr.c:317 #, c-format msgid "Setting target can be done only for single file" -msgstr "" +msgstr "Å bestemme målpunkt kan kun gjøres for én fil om gangen" #: ../src/modules/vfs-menu.c:299 #, c-format msgid "XML file '%s' error (%d:%d): " -msgstr "" +msgstr "XML-filfeil '%s' (%d:%d): " #: ../src/modules/vfs-menu.c:309 msgid "XML file doesn't contain Applications root" -msgstr "" +msgstr "XML-filen støtter ikke Programmer-roten" #: ../src/modules/vfs-menu.c:384 ../src/modules/vfs-menu.c:464 #: ../src/modules/vfs-menu.c:568 ../src/modules/vfs-menu.c:682 #, c-format msgid "Cannot create XML definition for '%s'" -msgstr "" +msgstr "Kan ikke opprette en XML-definisjon for '%s'" #: ../src/modules/vfs-menu.c:449 ../src/modules/vfs-menu.c:2634 #, c-format msgid "Menu path '%s' already exists" -msgstr "" +msgstr "'%s'-menyfilbanen finnes allerede" #: ../src/modules/vfs-menu.c:1102 ../src/modules/vfs-menu.c:1407 #: ../src/modules/vfs-menu.c:1493 msgid "Menu cache error" -msgstr "" +msgstr "Menyhurtiglager-feil" #: ../src/modules/vfs-menu.c:1367 msgid "Invalid menu directory" -msgstr "" +msgstr "Ugyldig menymappe" #: ../src/modules/vfs-menu.c:1430 ../src/modules/vfs-menu.c:1706 msgid "Menu item name cannot be empty" -msgstr "" +msgstr "Menyelementnavnet kan ikke være tomt" #: ../src/modules/vfs-menu.c:1480 #, c-format msgid "Invalid menu directory '%s'" -msgstr "" +msgstr "Ugyldig menymappe '%s'" #: ../src/modules/vfs-menu.c:1623 ../src/modules/vfs-menu.c:1764 msgid "Invalid menu item" -msgstr "" +msgstr "Ugyldig menyelement" #: ../src/modules/vfs-menu.c:1627 ../src/modules/vfs-menu.c:1768 #, c-format msgid "The menu item '%s' doesn't have appropriate entry file" -msgstr "" +msgstr "'%s'-menygjenstanden har ikke en passende oppføringsfil" #: ../src/modules/vfs-menu.c:1790 msgid "Change hidden status isn't supported for menu directory" -msgstr "" +msgstr "Å endre skjulingsstatus er ikke støttet for menymappen" #: ../src/modules/vfs-menu.c:1948 #, c-format msgid "Setting attribute '%s' not supported" -msgstr "" +msgstr "Å bestemme '%s'-attributten er ikke støttet" #: ../src/modules/vfs-menu.c:1958 #, c-format msgid "Invalid value for attribute '%s'" -msgstr "" +msgstr "Ugyldig verdi for '%s'-attributten" #: ../src/modules/vfs-menu.c:1995 #, c-format msgid "The '%s' is a menu directory" -msgstr "" +msgstr "'%s'-en er en menymappe" #: ../src/modules/vfs-menu.c:1998 ../src/modules/vfs-menu.c:2627 #, c-format msgid "The '%s' isn't a menu item" -msgstr "" +msgstr "'%s' er ikke et menyelement" #: ../src/modules/vfs-menu.c:2022 #, c-format msgid "The '%s' entry file is broken" -msgstr "" +msgstr "'%s'-oppføringsfilen er ødelagt" #: ../src/modules/vfs-menu.c:2308 ../src/modules/vfs-menu.c:2397 #, c-format msgid "Cannot create menu item '%s'" -msgstr "" +msgstr "Kan ikke opprette menygjenstanden '%s'" #: ../src/modules/vfs-menu.c:2542 msgid "Name of menu directory should not end with \".desktop\"" -msgstr "" +msgstr "Navnet til menymappen kan ikke slutte med «.desktop»" #: ../src/modules/vfs-menu.c:2587 msgid "Invalid operation with menu root" -msgstr "" +msgstr "Ugyldig handling med menyrotmappen" #: ../src/modules/vfs-menu.c:2676 msgid "Invalid destination" -msgstr "" +msgstr "Ugyldig destinasjon" #: ../src/modules/vfs-menu.c:2952 #, c-format msgid "FmMenuVFileMonitor: folder '%s' not found in menu cache" -msgstr "" +msgstr "FmMenuVFileMonitor: '%s'-mappen ble ikke funnet i menyhurtiglageret" #. FIXME: need name to be converted to UTF-8? #: ../src/modules/vfs-search.c:991 msgid "Search" -msgstr "" +msgstr "Søk" #: ../src/modules/vfs-search.c:1053 msgid "Search Results" -msgstr "" +msgstr "Søkeresultater" #: ../src/modules/gtk-fileprop-x-desktop.c:66 msgid "Choose Executable File" -msgstr "" +msgstr "Velg en kjørbar fil" #: ../src/modules/gtk-fileprop-x-desktop.c:72 msgid "Executable files" -msgstr "" +msgstr "Kjørbare filer" #: ../src/modules/gtk-fileprop-x-desktop.c:267 msgid "<b>Co_mmand:</b>" -msgstr "" +msgstr "<b>Ko_mmando:</b>" #: ../src/modules/gtk-fileprop-x-desktop.c:288 msgid "Command to execute when the application icon is activated" -msgstr "" +msgstr "Kommandoen som skal kjøres når programikonet er aktivert" #: ../src/modules/gtk-fileprop-x-desktop.c:322 msgid "<b>D_escription:</b>" -msgstr "" +msgstr "<b>B_eskrivelse:</b>" #: ../src/modules/gtk-fileprop-x-desktop.c:332 msgid "Generic name of the application" -msgstr "" +msgstr "Programmets generiske navn" #: ../src/modules/gtk-fileprop-x-desktop.c:340 msgid "<b>_Working directory:</b>" -msgstr "" +msgstr "<b>_Utgangspunktmappe:</b>" #: ../src/modules/gtk-fileprop-x-desktop.c:351 msgid "The working directory to run the program in" -msgstr "" +msgstr "Utgangspunktmappen som programmet skal kjøres i" #: ../src/modules/gtk-fileprop-x-desktop.c:359 msgid "<b>_Tooltip:</b>" -msgstr "" +msgstr "<b>_Verktøytips:</b>" #: ../src/modules/gtk-fileprop-x-desktop.c:369 msgid "Tooltip to show on application" -msgstr "" +msgstr "Verktøytipset som skal vises for programmet" #. TODO: handle "TryExec" field ? #. row 7: "StartupNotify" GtkCheckButton #: ../src/modules/gtk-fileprop-x-desktop.c:375 msgid "_Use startup notification" -msgstr "" +msgstr "_Benytt oppstartsbeskjeden" #: ../src/modules/gtk-fileprop-x-desktop.c:388 msgid "_Desktop Entry" -msgstr "" +msgstr "_Skrivebordsoppføring" #: ../src/modules/gtk-menu-trash.c:74 msgid "_Restore" -msgstr "" +msgstr "_Gjenopprett" #: ../src/modules/gtk-menu-trash.c:75 msgid "Restore trashed files to original paths" -msgstr "" +msgstr "Gjenopprett kastede filer til sine opprinnelige filbaner" #: ../src/tools/lxshortcut.c:42 msgid "source file name or desktop id" -msgstr "" +msgstr "kildefilnavn eller skrivebords-id" #: ../src/tools/lxshortcut.c:42 msgid "SOURCE" -msgstr "" +msgstr "KILDE" #: ../src/tools/lxshortcut.c:43 msgid "result file name" -msgstr "" +msgstr "resultatfilnavn" #: ../src/tools/lxshortcut.c:43 msgid "RESULT" -msgstr "" +msgstr "RESULTAT" #. Translator: The word "blank" is used as an adjective, e.g. we are decsribing discs that are already blank #: ../src/udisks/g-udisks-device.c:41 msgid "CD-ROM Disc" -msgstr "" +msgstr "CD-ROM-disk" #: ../src/udisks/g-udisks-device.c:41 msgid "Blank CD-ROM Disc" -msgstr "" +msgstr "Blank CD-ROM-disk" #: ../src/udisks/g-udisks-device.c:42 msgid "CD-R Disc" -msgstr "" +msgstr "CD-R-disk" #: ../src/udisks/g-udisks-device.c:42 msgid "Blank CD-R Disc" -msgstr "" +msgstr "Blank CD-R-disk" #: ../src/udisks/g-udisks-device.c:43 msgid "CD-RW Disc" -msgstr "" +msgstr "CD-RW-disk" #: ../src/udisks/g-udisks-device.c:43 msgid "Blank CD-RW Disc" -msgstr "" +msgstr "Blank CD-RW-disk" #: ../src/udisks/g-udisks-device.c:44 ../src/udisks/g-udisks-device.c:45 msgid "DVD-ROM Disc" -msgstr "" +msgstr "DVD-ROM-disk" #: ../src/udisks/g-udisks-device.c:44 ../src/udisks/g-udisks-device.c:45 msgid "Blank DVD-ROM Disc" -msgstr "" +msgstr "Blank DVD-ROM-disk" #: ../src/udisks/g-udisks-device.c:46 msgid "DVD-RW Disc" -msgstr "" +msgstr "DVD-RW-disk" #: ../src/udisks/g-udisks-device.c:46 msgid "Blank DVD-RW Disc" -msgstr "" +msgstr "Blank DVD-RW-disk" #: ../src/udisks/g-udisks-device.c:47 msgid "DVD-RAM Disc" -msgstr "" +msgstr "DVD-RAM-disk" #: ../src/udisks/g-udisks-device.c:47 msgid "Blank DVD-RAM Disc" -msgstr "" +msgstr "Blank DVD-RAM-disk" #: ../src/udisks/g-udisks-device.c:48 msgid "DVD+R Disc" -msgstr "" +msgstr "DVD+R-disk" #: ../src/udisks/g-udisks-device.c:48 msgid "Blank DVD+R Disc" -msgstr "" +msgstr "Blank DVD+R-disk" #: ../src/udisks/g-udisks-device.c:49 msgid "DVD+RW Disc" -msgstr "" +msgstr "DVD+RW-disk" #: ../src/udisks/g-udisks-device.c:49 msgid "Blank DVD+RW Disc" -msgstr "" +msgstr "Blank DVD+RW-disk" #: ../src/udisks/g-udisks-device.c:50 msgid "DVD+R DL Disc" -msgstr "" +msgstr "DVD+R DL-disk" #: ../src/udisks/g-udisks-device.c:50 msgid "Blank DVD+R DL Disc" -msgstr "" +msgstr "Blank DVD+R DL-disk" #: ../src/udisks/g-udisks-device.c:51 msgid "DVD+RW DL Disc" -msgstr "" +msgstr "DVD+RW DL-disk" #: ../src/udisks/g-udisks-device.c:51 msgid "Blank DVD+RW DL Disc" -msgstr "" +msgstr "Blank DVD+RW DL-disk" #: ../src/udisks/g-udisks-device.c:52 msgid "Blu-Ray Disc" -msgstr "" +msgstr "Blu-Ray-disk" #: ../src/udisks/g-udisks-device.c:52 msgid "Blank Blu-Ray Disc" -msgstr "" +msgstr "Blank Blu-Ray-disk" #: ../src/udisks/g-udisks-device.c:53 msgid "Blu-Ray R Disc" -msgstr "" +msgstr "Blu-Ray R-disk" #: ../src/udisks/g-udisks-device.c:53 msgid "Blank Blu-Ray R Disc" -msgstr "" +msgstr "Blank Blu-Ray R-disk" #: ../src/udisks/g-udisks-device.c:54 msgid "Blu-Ray RW Disc" -msgstr "" +msgstr "Blu-Ray RW-disk" #: ../src/udisks/g-udisks-device.c:54 msgid "Blank Blu-Ray RW Disc" -msgstr "" +msgstr "Blank Blu-Ray RW-disk" #: ../src/udisks/g-udisks-device.c:55 msgid "HD DVD Disc" -msgstr "" +msgstr "HD DVD-disk" #: ../src/udisks/g-udisks-device.c:55 msgid "Blank HD DVD Disc" -msgstr "" +msgstr "Blank HD DVD-disk" #: ../src/udisks/g-udisks-device.c:56 msgid "HD DVD-R Disc" -msgstr "" +msgstr "HD DVD-R-disk" #: ../src/udisks/g-udisks-device.c:56 msgid "Blank HD DVD-R Disc" -msgstr "" +msgstr "Blank HD DVD-R-disk" #: ../src/udisks/g-udisks-device.c:57 msgid "HD DVD-RW Disc" -msgstr "" +msgstr "HD DVD-RW-disk" #: ../src/udisks/g-udisks-device.c:57 msgid "Blank HD DVD-RW Disc" -msgstr "" +msgstr "Blank HD DVD-RW-disk" #: ../src/udisks/g-udisks-device.c:58 msgid "MO Disc" -msgstr "" +msgstr "MO-disk" #: ../src/udisks/g-udisks-device.c:58 msgid "Blank MO Disc" -msgstr "" +msgstr "Blank MO-disk" #: ../src/udisks/g-udisks-device.c:59 msgid "MRW Disc" -msgstr "" +msgstr "MRW-disk" #: ../src/udisks/g-udisks-device.c:59 msgid "Blank MRW Disc" -msgstr "" +msgstr "Blank MRW-disk" #: ../src/udisks/g-udisks-device.c:60 msgid "MRW/W Disc" -msgstr "" +msgstr "MRW/W-disk" #: ../src/udisks/g-udisks-device.c:60 msgid "Blank MRW/W Disc" -msgstr "" +msgstr "Blank MRW/W-disk" #: ../src/udisks/g-udisks-device.c:299 msgid "Blank Optical Disc" -msgstr "" +msgstr "Blank optisk disk" #: ../src/udisks/g-udisks-device.c:301 msgid "Optical Disc" -msgstr "" +msgstr "Optisk disk"
View file
_service:tar_scm:libfm-1.3.1.tar.xz/po/nl.po -> _service:tar_scm:libfm-1.3.2.tar.xz/po/nl.po
Changed
@@ -88,8 +88,7 @@ #: ../data/ui/app-chooser.glade.h:14 msgid "<b>_Application name (optional, set it to keep association)</b>" msgstr "" -"<b>Naam van toepassing (naar keuze, stel dit in om associatie te behouden)</" -"b>" +"<b>Naam van toepassing (naar keuze, stel dit in om associatie te behouden)</b>" #: ../data/ui/app-chooser.glade.h:15 msgid "Execute custom command line to open files"
View file
_service:tar_scm:libfm-1.3.1.tar.xz/po/sk.po -> _service:tar_scm:libfm-1.3.2.tar.xz/po/sk.po
Changed
@@ -9,7 +9,7 @@ "Project-Id-Version: libfm 1.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-13 00:10+0300\n" -"PO-Revision-Date: 2018-12-15 00:54+0000\n" +"PO-Revision-Date: 2019-01-18 08:16+0000\n" "Last-Translator: mirek <mirek@cnl.sk>\n" "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" "Language: sk\n" @@ -18,7 +18,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.8\n" -"X-POOTLE-MTIME: 1544835260.640638\n" +"X-POOTLE-MTIME: 1547799362.705221\n" #: ../data/libfm-pref-apps.desktop.in.h:1 ../data/ui/preferred-apps.glade.h:1 msgid "Preferred Applications" @@ -89,7 +89,8 @@ #: ../data/ui/app-chooser.glade.h:14 #, fuzzy msgid "<b>_Application name (optional, set it to keep association)</b>" -msgstr "<b>_Názov aplikácie (nepovinný, set it to keep association)</b>" +msgstr "" +"<b>_Názov aplikácie (voliteľný, nastavte ho pre zachovanie asociácie)</b>" #: ../data/ui/app-chooser.glade.h:15 msgid "Execute custom command line to open files" @@ -435,7 +436,7 @@ #: ../data/ui/filesearch.glade.h:24 msgid "Ot_her:" -msgstr "" +msgstr "_Iné:" #: ../data/ui/filesearch.glade.h:25 msgid "" @@ -889,9 +890,8 @@ msgstr "načítava sa..." #: ../src/gtk/fm-file-properties.c:1088 -#, fuzzy msgid "<b>_Access content:</b>" -msgstr "<b>Riadenie prístupu</b>" +msgstr "<b>_Prístup k obsahu:</b>" #: ../src/gtk/fm-file-properties.c:1239 msgid "Files of different types" @@ -912,7 +912,7 @@ #: ../src/gtk/fm-folder-model.c:191 msgid "Description" -msgstr "Popis" +msgstr "Opis" #: ../src/gtk/fm-folder-model.c:192 msgid "Size" @@ -972,9 +972,8 @@ #. Note to translators: "Mingle..." means "Do not put folders before files" but make the translation as short as possible, please! #: ../src/gtk/fm-folder-view.c:207 -#, fuzzy msgid "Mingle _Files and Folders" -msgstr "Všetky súbory a adresáre" +msgstr "Miešať _súbory a priečinky" #: ../src/gtk/fm-folder-view.c:208 msgid "_Ignore Name Case" @@ -1131,9 +1130,8 @@ msgstr "Aplikácie" #: ../src/gtk/fm-places-model.c:831 ../src/gtk/fm-places-model.c:1009 -#, fuzzy msgid "Filesystem Root" -msgstr "Súborový systém" +msgstr "Koreňový priečinok súborového systému" #: ../src/gtk/fm-places-view.c:131 msgid "_Mount Volume" @@ -1324,7 +1322,7 @@ #: ../src/gtk/fm-side-pane.c:67 msgid "_Places" -msgstr "" +msgstr "_Miesta" #: ../src/gtk/fm-side-pane.c:68 #, fuzzy @@ -1337,7 +1335,7 @@ #: ../src/gtk/fm-side-pane.c:428 ../src/gtk/fm-side-pane.c:621 msgid "Places" -msgstr "" +msgstr "Miesta" #: ../src/gtk/fm-side-pane.c:438 ../src/gtk/fm-side-pane.c:623 msgid "Directory Tree" @@ -1354,14 +1352,12 @@ msgstr "_Skryť %s" #: ../src/gtk/fm-standard-view.c:826 -#, fuzzy msgid "_Move Left" -msgstr "Presunúť:" +msgstr "_Presunúť vľavo" #: ../src/gtk/fm-standard-view.c:832 -#, fuzzy msgid "Move _Right" -msgstr "Presunúť _hore" +msgstr "Presunúť _vpravo" #: ../src/gtk/fm-standard-view.c:855 #, c-format @@ -1455,9 +1451,8 @@ msgstr "Chyba XML súboru '%s' (%d:%d): " #: ../src/modules/vfs-menu.c:309 -#, fuzzy msgid "XML file doesn't contain Applications root" -msgstr "XML súbor neobsahuje Applications root" +msgstr "XML súbor neobsahuje koreň Applications" #: ../src/modules/vfs-menu.c:384 ../src/modules/vfs-menu.c:464 #: ../src/modules/vfs-menu.c:568 ../src/modules/vfs-menu.c:682 @@ -1508,9 +1503,9 @@ msgstr "" #: ../src/modules/vfs-menu.c:1958 -#, fuzzy, c-format +#, c-format msgid "Invalid value for attribute '%s'" -msgstr "Domovský adresár" +msgstr "Neplatná hodnota atribútu '%s'" #: ../src/modules/vfs-menu.c:1995 #, fuzzy, c-format @@ -1551,60 +1546,52 @@ #. FIXME: need name to be converted to UTF-8? #: ../src/modules/vfs-search.c:991 -#, fuzzy msgid "Search" -msgstr "Hľadať znova" +msgstr "Hľadať" #: ../src/modules/vfs-search.c:1053 msgid "Search Results" msgstr "Výsledky vyhľadávania" #: ../src/modules/gtk-fileprop-x-desktop.c:66 -#, fuzzy msgid "Choose Executable File" -msgstr "Spustiť" +msgstr "Vyberte si spusiteľný súbor" #: ../src/modules/gtk-fileprop-x-desktop.c:72 -#, fuzzy msgid "Executable files" -msgstr "Spustiť" +msgstr "Spustiteľné súbory" #: ../src/modules/gtk-fileprop-x-desktop.c:267 -#, fuzzy msgid "<b>Co_mmand:</b>" -msgstr "<b>Do:</b>" +msgstr "<b>_Príkaz:</b>" #: ../src/modules/gtk-fileprop-x-desktop.c:288 msgid "Command to execute when the application icon is activated" -msgstr "" +msgstr "Príkaz, ktorý sa spustí po aktivovaní ikony aplikácie" #: ../src/modules/gtk-fileprop-x-desktop.c:322 -#, fuzzy msgid "<b>D_escription:</b>" -msgstr "<b>Umiestnenie:</b>" +msgstr "<b>_Opis:</b>" #: ../src/modules/gtk-fileprop-x-desktop.c:332 msgid "Generic name of the application" -msgstr "" +msgstr "Obecný názov aplikácie" #: ../src/modules/gtk-fileprop-x-desktop.c:340 -#, fuzzy msgid "<b>_Working directory:</b>" -msgstr "<b>_Vlastník:</b>" +msgstr "<b>P_racovný priečinok:</b>" #: ../src/modules/gtk-fileprop-x-desktop.c:351 msgid "The working directory to run the program in" -msgstr "" +msgstr "Pracovný priečinok, v ktorom bude program spustený" #: ../src/modules/gtk-fileprop-x-desktop.c:359 -#, fuzzy msgid "<b>_Tooltip:</b>" -msgstr "<b>Do:</b>" +msgstr "<b>P_opisok:</b>" #: ../src/modules/gtk-fileprop-x-desktop.c:369 -#, fuzzy msgid "Tooltip to show on application" -msgstr "Vyberte aplikáciu" +msgstr "Popisok, ktorý sa zobrazí nad aplikáciou" #. TODO: handle "TryExec" field ? #. row 7: "StartupNotify" GtkCheckButton @@ -1632,7 +1619,7 @@ #: ../src/tools/lxshortcut.c:42 msgid "SOURCE" -msgstr "" +msgstr "ZDROJ" #: ../src/tools/lxshortcut.c:43 msgid "result file name" @@ -1640,7 +1627,7 @@ #: ../src/tools/lxshortcut.c:43 msgid "RESULT" -msgstr "" +msgstr "VÝSLEDOK" #. Translator: The word "blank" is used as an adjective, e.g. we are decsribing discs that are already blank #: ../src/udisks/g-udisks-device.c:41 @@ -1648,9 +1635,8 @@ msgstr "Disk CD-ROM" #: ../src/udisks/g-udisks-device.c:41 -#, fuzzy msgid "Blank CD-ROM Disc" -msgstr "Prázdny disk CD-R" +msgstr "Prázdny disk CD" #: ../src/udisks/g-udisks-device.c:42 msgid "CD-R Disc" @@ -1673,9 +1659,8 @@ msgstr "Disk DVD-ROM" #: ../src/udisks/g-udisks-device.c:44 ../src/udisks/g-udisks-device.c:45 -#, fuzzy msgid "Blank DVD-ROM Disc" -msgstr "Prázdny disk DVD-ROM" +msgstr "Prázdny disk DVD" #: ../src/udisks/g-udisks-device.c:46 msgid "DVD-RW Disc" @@ -1730,103 +1715,84 @@ msgstr "Prázdny disk DVD-RW" #: ../src/udisks/g-udisks-device.c:52 -#, fuzzy msgid "Blu-Ray Disc" -msgstr "Prázdny disk CD-R" +msgstr "Disk Blu-Ray" #: ../src/udisks/g-udisks-device.c:52 -#, fuzzy msgid "Blank Blu-Ray Disc" -msgstr "Prázdny disk CD-R" +msgstr "Prázdny disk Blu-Ray" #: ../src/udisks/g-udisks-device.c:53 -#, fuzzy msgid "Blu-Ray R Disc" -msgstr "Prázdny disk CD-R" +msgstr "Disk Blu-Ray R" #: ../src/udisks/g-udisks-device.c:53 -#, fuzzy msgid "Blank Blu-Ray R Disc" -msgstr "Prázdny disk CD-R" +msgstr "Prázdny disk Blu-Ray R" #: ../src/udisks/g-udisks-device.c:54 -#, fuzzy msgid "Blu-Ray RW Disc" -msgstr "Prázdny disk CD-RW" +msgstr "Disk Blu-Ray RW" #: ../src/udisks/g-udisks-device.c:54 -#, fuzzy msgid "Blank Blu-Ray RW Disc" -msgstr "Prázdny disk CD-RW" +msgstr "Prázdny disk Blu-Ray RW" #: ../src/udisks/g-udisks-device.c:55 -#, fuzzy msgid "HD DVD Disc" -msgstr "Disk DVD-R" +msgstr "Disk HD DVD" #: ../src/udisks/g-udisks-device.c:55 -#, fuzzy msgid "Blank HD DVD Disc" -msgstr "Prázdny disk DVD-R" +msgstr "Prázdny disk HD DVD" #: ../src/udisks/g-udisks-device.c:56 -#, fuzzy msgid "HD DVD-R Disc" -msgstr "Disk DVD-R" +msgstr "Disk HD DVD-R" #: ../src/udisks/g-udisks-device.c:56 -#, fuzzy msgid "Blank HD DVD-R Disc" -msgstr "Prázdny disk DVD-R" +msgstr "Prázdny disk HD DVD-R" #: ../src/udisks/g-udisks-device.c:57 -#, fuzzy msgid "HD DVD-RW Disc" -msgstr "Disk DVD-RW" +msgstr "Disk HD DVD-RW" #: ../src/udisks/g-udisks-device.c:57 -#, fuzzy msgid "Blank HD DVD-RW Disc" -msgstr "Prázdny disk DVD-RW" +msgstr "Prázdny disk HD DVD-RW" #: ../src/udisks/g-udisks-device.c:58 -#, fuzzy msgid "MO Disc" -msgstr "Disk CD-ROM" +msgstr "Disk MO" #: ../src/udisks/g-udisks-device.c:58 -#, fuzzy msgid "Blank MO Disc" -msgstr "Prázdny disk CD-R" +msgstr "Prázdny disk MO" #: ../src/udisks/g-udisks-device.c:59 -#, fuzzy msgid "MRW Disc" -msgstr "Disk CD-RW" +msgstr "Disk MRW" #: ../src/udisks/g-udisks-device.c:59 -#, fuzzy msgid "Blank MRW Disc" -msgstr "Prázdny disk CD-RW" +msgstr "Prázdny disk MRW" #: ../src/udisks/g-udisks-device.c:60 -#, fuzzy msgid "MRW/W Disc" -msgstr "Disk CD-RW" +msgstr "Disk MRW/W" #: ../src/udisks/g-udisks-device.c:60 -#, fuzzy msgid "Blank MRW/W Disc" -msgstr "Prázdny disk CD-RW" +msgstr "Prázdny disk MRW/W" #: ../src/udisks/g-udisks-device.c:299 -#, fuzzy msgid "Blank Optical Disc" -msgstr "Prázdny disk CD-R" +msgstr "Prázdny optický disk" #: ../src/udisks/g-udisks-device.c:301 msgid "Optical Disc" -msgstr "" +msgstr "Optický disk" #, fuzzy #~ msgid "Symlinking"
View file
_service:tar_scm:libfm-1.3.1.tar.xz/po/sr.po -> _service:tar_scm:libfm-1.3.2.tar.xz/po/sr.po
Changed
@@ -9,17 +9,17 @@ "Project-Id-Version: Libfm\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-13 00:10+0300\n" -"PO-Revision-Date: 2015-06-04 08:54+0000\n" +"PO-Revision-Date: 2018-12-23 18:05+0000\n" "Last-Translator: markos <jezzivi@yahoo.com>\n" "Language-Team: \n" "Language: 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" -"X-Generator: Pootle 2.7\n" -"X-POOTLE-MTIME: 1433408071.000000\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" +"X-Generator: Pootle 2.8\n" +"X-POOTLE-MTIME: 1545588324.285562\n" #: ../data/libfm-pref-apps.desktop.in.h:1 ../data/ui/preferred-apps.glade.h:1 msgid "Preferred Applications" @@ -532,9 +532,8 @@ msgstr "Припрема..." #: ../data/ui/progress.glade.h:5 -#, fuzzy msgid "<b>Data transferred:</b>" -msgstr "<b>Одредишна датотека:</b>" +msgstr "<b>Отпремљени подаци:</b>" #: ../data/ui/progress.glade.h:6 msgid "<b>Time remaining:</b>" @@ -545,14 +544,12 @@ msgstr "<b>Догодиле су се неке грешке:</b>" #: ../src/base/fm-action.c:272 -#, fuzzy msgid "Empty value" -msgstr "Празна датотека" +msgstr "Празна вредност" #: ../src/base/fm-action.c:280 -#, fuzzy msgid "Invalid selection" -msgstr "Неисправно одредиште" +msgstr "Неисправан одабир" #. ---- GFile implementation ---- #: ../src/base/fm-action.c:807 ../src/job/fm-file-ops-job.c:271 @@ -1212,9 +1209,8 @@ "Измењено: %s" #: ../src/gtk/fm-progress-dlg.c:343 -#, fuzzy msgid "<b>Errors occurred before file operation was stopped.</b>" -msgstr "<b>Грешке су се догодиле пре заустављања радње са датотеком</b>" +msgstr "<b>Грешке су се догодиле пре заустављања радње са датотеком.</b>" #: ../src/gtk/fm-progress-dlg.c:345 msgid "Cancelled" @@ -1412,7 +1408,7 @@ #: ../src/job/fm-file-ops-job-xfer.c:58 msgid "Destination does not exist" -msgstr "" +msgstr "Одредиште не постоји" #: ../src/job/fm-file-ops-job-xfer.c:63 msgid "Source and destination are the same."
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/Makefile.am -> _service:tar_scm:libfm-1.3.2.tar.xz/src/Makefile.am
Changed
@@ -1,5 +1,5 @@ # for use in libtool -version-info -ABI_VERSION=5:2:1 +ABI_VERSION=5:3:1 NULL=
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/src/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# 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, @@ -114,6 +114,10 @@ CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = fm-version.h CONFIG_CLEAN_VPATH_FILES = +@ENABLE_DEMO_TRUE@am__EXEEXT_1 = libfm-demo$(EXEEXT) +am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(giomodulesdir)" \ + "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgincludedir)" +PROGRAMS = $(bin_PROGRAMS) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ @@ -141,8 +145,6 @@ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } -am__installdirs = "$(DESTDIR)$(giomodulesdir)" "$(DESTDIR)$(libdir)" \ - "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgincludedir)" LTLIBRARIES = $(giomodules_LTLIBRARIES) $(lib_LTLIBRARIES) am__DEPENDENCIES_1 = libfm_extra_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ @@ -335,8 +337,6 @@ @EXTRALIB_ONLY_FALSE@@HAVE_SCHEME_HANDLER_FALSE@am_libgiofm_la_rpath = \ @EXTRALIB_ONLY_FALSE@@HAVE_SCHEME_HANDLER_FALSE@ -rpath \ @EXTRALIB_ONLY_FALSE@@HAVE_SCHEME_HANDLER_FALSE@ $(giomodulesdir) -@ENABLE_DEMO_TRUE@am__EXEEXT_1 = libfm-demo$(EXEEXT) -PROGRAMS = $(bin_PROGRAMS) am__libfm_demo_SOURCES_DIST = glib-compat.c glib-compat.h gtk-compat.c \ gtk-compat.h demo/libfm-demo.c demo/main-win.c demo/main-win.h am__objects_18 = libfm_demo-glib-compat.$(OBJEXT) $(am__objects_1) @@ -382,7 +382,135 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/libfm_demo-glib-compat.Po \ + ./$(DEPDIR)/libfm_demo-gtk-compat.Po \ + ./$(DEPDIR)/libfm_gtk3_la-fm-gtk.Plo \ + ./$(DEPDIR)/libfm_gtk3_la-glib-compat.Plo \ + ./$(DEPDIR)/libfm_gtk3_la-gtk-compat.Plo \ + ./$(DEPDIR)/libfm_gtk_la-fm-gtk.Plo \ + ./$(DEPDIR)/libfm_gtk_la-glib-compat.Plo \ + ./$(DEPDIR)/libfm_gtk_la-gtk-compat.Plo \ + ./$(DEPDIR)/libfm_la-fm.Plo \ + ./$(DEPDIR)/libfm_la-glib-compat.Plo \ + ./$(DEPDIR)/libfm_pref_apps-glib-compat.Po \ + ./$(DEPDIR)/libfm_pref_apps-gtk-compat.Po \ + ./$(DEPDIR)/libgiofm_la-glib-compat.Plo \ + base/$(DEPDIR)/libfm_la-fm-action.Plo \ + base/$(DEPDIR)/libfm_la-fm-app-info.Plo \ + base/$(DEPDIR)/libfm_la-fm-archiver.Plo \ + base/$(DEPDIR)/libfm_la-fm-bookmarks.Plo \ + base/$(DEPDIR)/libfm_la-fm-config.Plo \ + base/$(DEPDIR)/libfm_la-fm-dummy-monitor.Plo \ + base/$(DEPDIR)/libfm_la-fm-file-info.Plo \ + base/$(DEPDIR)/libfm_la-fm-file-launcher.Plo \ + base/$(DEPDIR)/libfm_la-fm-file.Plo \ + base/$(DEPDIR)/libfm_la-fm-folder-config.Plo \ + base/$(DEPDIR)/libfm_la-fm-folder.Plo \ + base/$(DEPDIR)/libfm_la-fm-icon.Plo \ + base/$(DEPDIR)/libfm_la-fm-list.Plo \ + base/$(DEPDIR)/libfm_la-fm-marshal.Plo \ + base/$(DEPDIR)/libfm_la-fm-mime-type.Plo \ + base/$(DEPDIR)/libfm_la-fm-module.Plo \ + base/$(DEPDIR)/libfm_la-fm-monitor.Plo \ + base/$(DEPDIR)/libfm_la-fm-nav-history.Plo \ + base/$(DEPDIR)/libfm_la-fm-path.Plo \ + base/$(DEPDIR)/libfm_la-fm-templates.Plo \ + base/$(DEPDIR)/libfm_la-fm-terminal.Plo \ + base/$(DEPDIR)/libfm_la-fm-thumbnail-loader.Plo \ + base/$(DEPDIR)/libfm_la-fm-thumbnailer.Plo \ + base/$(DEPDIR)/libfm_la-fm-utils.Plo \ + demo/$(DEPDIR)/libfm_demo-libfm-demo.Po \ + demo/$(DEPDIR)/libfm_demo-main-win.Po \ + extra/$(DEPDIR)/libfm_extra_la-fm-xml-file.Plo \ + gio/$(DEPDIR)/libgiofm_la-fm-app-lookup.Plo \ + gio/$(DEPDIR)/libgiofm_la-module.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-chooser-combo-box.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-chooser-dlg.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-menu-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-cell-renderer-pixbuf.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-cell-renderer-text.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-clipboard.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-dir-tree-model.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-dir-tree-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-auto-scroll.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-dest.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-src.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-file-menu.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-file-properties.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-folder-model.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-folder-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-file-launcher.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-marshal.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-utils.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-icon-pixbuf.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-menu-tool-item.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-path-bar.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-path-entry.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-places-model.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-places-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-progress-dlg.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-side-pane.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-standard-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-tab-label.Plo \ + gtk/$(DEPDIR)/libfm_gtk3_la-fm-thumbnail.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-app-chooser-combo-box.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-app-chooser-dlg.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-app-menu-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-cell-renderer-pixbuf.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-cell-renderer-text.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-clipboard.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-dir-tree-model.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-dir-tree-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-auto-scroll.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-dest.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-src.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-file-menu.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-file-properties.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-folder-model.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-folder-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-file-launcher.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-marshal.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-utils.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-icon-pixbuf.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-menu-tool-item.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-path-bar.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-path-entry.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-places-model.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-places-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-progress-dlg.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-side-pane.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-standard-view.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-tab-label.Plo \ + gtk/$(DEPDIR)/libfm_gtk_la-fm-thumbnail.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-icon-view.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-marshal.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-private.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-string.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-tree-view.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-icon-view.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-marshal.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-private.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-string.Plo \ + gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-tree-view.Plo \ + job/$(DEPDIR)/libfm_la-fm-deep-count-job.Plo \ + job/$(DEPDIR)/libfm_la-fm-dir-list-job.Plo \ + job/$(DEPDIR)/libfm_la-fm-file-info-job.Plo \ + job/$(DEPDIR)/libfm_la-fm-file-ops-job-change-attr.Plo \ + job/$(DEPDIR)/libfm_la-fm-file-ops-job-delete.Plo \ + job/$(DEPDIR)/libfm_la-fm-file-ops-job-xfer.Plo \ + job/$(DEPDIR)/libfm_la-fm-file-ops-job.Plo \ + job/$(DEPDIR)/libfm_la-fm-job.Plo \ + job/$(DEPDIR)/libfm_la-fm-simple-job.Plo \ + tools/$(DEPDIR)/libfm_pref_apps-libfm-pref-apps.Po \ + tools/$(DEPDIR)/lxshortcut-lxshortcut.Po \ + udisks/$(DEPDIR)/libfm_la-dbus-utils.Plo \ + udisks/$(DEPDIR)/libfm_la-fm-udisks.Plo \ + udisks/$(DEPDIR)/libfm_la-g-udisks-device.Plo \ + udisks/$(DEPDIR)/libfm_la-g-udisks-drive.Plo \ + udisks/$(DEPDIR)/libfm_la-g-udisks-mount.Plo \ + udisks/$(DEPDIR)/libfm_la-g-udisks-volume-monitor.Plo \ + udisks/$(DEPDIR)/libfm_la-g-udisks-volume.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -458,7 +586,7 @@ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ - distdir + 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 @@ -690,7 +818,7 @@ top_srcdir = @top_srcdir@ # for use in libtool -version-info -ABI_VERSION = 5:2:1 +ABI_VERSION = 5:3:1 NULL = # current dir needs to be built before tests @@ -1151,8 +1279,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + 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) @@ -1165,6 +1293,55 @@ $(am__aclocal_m4_deps): fm-version.h: $(top_builddir)/config.status $(srcdir)/fm-version.h.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +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 (dirsd != 1) { print "d", d; dirsd = 1 } \ + if ($$2 == $$4) filesd = filesd " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, filesd }' | \ + 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-giomodulesLTLIBRARIES: $(giomodules_LTLIBRARIES) @$(NORMAL_INSTALL) @@ -1514,55 +1691,6 @@ libgiofm.la: $(libgiofm_la_OBJECTS) $(libgiofm_la_DEPENDENCIES) $(EXTRA_libgiofm_la_DEPENDENCIES) $(AM_V_CCLD)$(libgiofm_la_LINK) $(am_libgiofm_la_rpath) $(libgiofm_la_OBJECTS) $(libgiofm_la_LIBADD) $(LIBS) -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 (dirsd != 1) { print "d", d; dirsd = 1 } \ - if ($$2 == $$4) filesd = filesd " " $$1; \ - else { print "f", $$3 "/" $$4, $$1; } } \ - END { for (d in files) print "f", d, filesd }' | \ - 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 demo/$(am__dirstamp): @$(MKDIR_P) demo @: > demo/$(am__dirstamp) @@ -1618,134 +1746,140 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_demo-glib-compat.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_demo-gtk-compat.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_gtk3_la-fm-gtk.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_gtk3_la-glib-compat.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_gtk3_la-gtk-compat.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_gtk_la-fm-gtk.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_gtk_la-glib-compat.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_gtk_la-gtk-compat.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_la-fm.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_la-glib-compat.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_pref_apps-glib-compat.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_pref_apps-gtk-compat.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgiofm_la-glib-compat.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-action.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-app-info.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-archiver.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-bookmarks.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-config.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-dummy-monitor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-file-info.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-file-launcher.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-file.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-folder-config.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-folder.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-icon.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-list.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-marshal.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-mime-type.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-module.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-monitor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-nav-history.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-path.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-templates.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-terminal.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-thumbnail-loader.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-thumbnailer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-utils.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@demo/$(DEPDIR)/libfm_demo-libfm-demo.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@demo/$(DEPDIR)/libfm_demo-main-win.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@extra/$(DEPDIR)/libfm_extra_la-fm-xml-file.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gio/$(DEPDIR)/libgiofm_la-fm-app-lookup.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gio/$(DEPDIR)/libgiofm_la-module.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-chooser-combo-box.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-chooser-dlg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-menu-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-cell-renderer-pixbuf.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-cell-renderer-text.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-clipboard.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-dir-tree-model.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-dir-tree-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-auto-scroll.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-dest.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-src.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-file-menu.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-file-properties.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-folder-model.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-folder-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-file-launcher.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-marshal.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-utils.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-icon-pixbuf.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-menu-tool-item.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-path-bar.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-path-entry.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-places-model.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-places-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-progress-dlg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-side-pane.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-standard-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-tab-label.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-thumbnail.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-app-chooser-combo-box.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-app-chooser-dlg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-app-menu-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-cell-renderer-pixbuf.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-cell-renderer-text.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-clipboard.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-dir-tree-model.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-dir-tree-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-auto-scroll.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-dest.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-src.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-file-menu.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-file-properties.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-folder-model.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-folder-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-file-launcher.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-marshal.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-utils.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-icon-pixbuf.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-menu-tool-item.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-path-bar.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-path-entry.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-places-model.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-places-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-progress-dlg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-side-pane.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-standard-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-tab-label.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-thumbnail.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-icon-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-marshal.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-private.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-string.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-tree-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-icon-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-marshal.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-private.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-string.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-tree-view.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-deep-count-job.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-dir-list-job.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-file-info-job.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-file-ops-job-change-attr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-file-ops-job-delete.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-file-ops-job-xfer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-file-ops-job.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-job.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-simple-job.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/libfm_pref_apps-libfm-pref-apps.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/lxshortcut-lxshortcut.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-dbus-utils.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-fm-udisks.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-g-udisks-device.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-g-udisks-drive.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-g-udisks-mount.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-g-udisks-volume-monitor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-g-udisks-volume.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_demo-glib-compat.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_demo-gtk-compat.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_gtk3_la-fm-gtk.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_gtk3_la-glib-compat.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_gtk3_la-gtk-compat.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_gtk_la-fm-gtk.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_gtk_la-glib-compat.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_gtk_la-gtk-compat.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_la-fm.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_la-glib-compat.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_pref_apps-glib-compat.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm_pref_apps-gtk-compat.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgiofm_la-glib-compat.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-action.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-app-info.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-archiver.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-bookmarks.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-config.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-dummy-monitor.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-file-info.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-file-launcher.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-file.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-folder-config.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-folder.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-icon.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-list.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-marshal.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-mime-type.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-module.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-monitor.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-nav-history.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-path.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-templates.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-terminal.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-thumbnail-loader.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-thumbnailer.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@base/$(DEPDIR)/libfm_la-fm-utils.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@demo/$(DEPDIR)/libfm_demo-libfm-demo.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@demo/$(DEPDIR)/libfm_demo-main-win.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@extra/$(DEPDIR)/libfm_extra_la-fm-xml-file.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gio/$(DEPDIR)/libgiofm_la-fm-app-lookup.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gio/$(DEPDIR)/libgiofm_la-module.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-chooser-combo-box.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-chooser-dlg.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-menu-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-cell-renderer-pixbuf.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-cell-renderer-text.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-clipboard.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-dir-tree-model.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-dir-tree-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-auto-scroll.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-dest.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-src.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-file-menu.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-file-properties.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-folder-model.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-folder-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-file-launcher.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-marshal.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-utils.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-icon-pixbuf.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-menu-tool-item.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-path-bar.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-path-entry.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-places-model.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-places-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-progress-dlg.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-side-pane.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-standard-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-tab-label.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk3_la-fm-thumbnail.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-app-chooser-combo-box.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-app-chooser-dlg.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-app-menu-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-cell-renderer-pixbuf.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-cell-renderer-text.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-clipboard.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-dir-tree-model.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-dir-tree-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-auto-scroll.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-dest.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-src.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-file-menu.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-file-properties.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-folder-model.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-folder-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-file-launcher.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-marshal.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-utils.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-icon-pixbuf.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-menu-tool-item.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-path-bar.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-path-entry.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-places-model.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-places-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-progress-dlg.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-side-pane.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-standard-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-tab-label.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/$(DEPDIR)/libfm_gtk_la-fm-thumbnail.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-icon-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-marshal.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-private.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-string.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-tree-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-icon-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-marshal.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-private.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-string.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-tree-view.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-deep-count-job.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-dir-list-job.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-file-info-job.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-file-ops-job-change-attr.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-file-ops-job-delete.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-file-ops-job-xfer.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-file-ops-job.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-job.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@job/$(DEPDIR)/libfm_la-fm-simple-job.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/libfm_pref_apps-libfm-pref-apps.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@tools/$(DEPDIR)/lxshortcut-lxshortcut.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-dbus-utils.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-fm-udisks.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-g-udisks-device.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-g-udisks-drive.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-g-udisks-mount.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-g-udisks-volume-monitor.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@udisks/$(DEPDIR)/libfm_la-g-udisks-volume.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$$||'`;\ @@ -2856,7 +2990,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +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)'; \ @@ -2914,17 +3051,18 @@ check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-recursive -all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS) +all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(HEADERS) install-binPROGRAMS: install-libLTLIBRARIES installdirs: installdirs-recursive installdirs-am: - for dir in "$(DESTDIR)$(giomodulesdir)" "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgincludedir)"; do \ + for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(giomodulesdir)" "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-recursive -install-exec: install-exec-recursive +install-exec: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive @@ -2979,7 +3117,134 @@ clean-libLTLIBRARIES clean-libtool mostlyclean-am distclean: distclean-recursive - -rm -rf ./$(DEPDIR) base/$(DEPDIR) demo/$(DEPDIR) extra/$(DEPDIR) gio/$(DEPDIR) gtk/$(DEPDIR) gtk/exo/$(DEPDIR) job/$(DEPDIR) tools/$(DEPDIR) udisks/$(DEPDIR) + -rm -f ./$(DEPDIR)/libfm_demo-glib-compat.Po + -rm -f ./$(DEPDIR)/libfm_demo-gtk-compat.Po + -rm -f ./$(DEPDIR)/libfm_gtk3_la-fm-gtk.Plo + -rm -f ./$(DEPDIR)/libfm_gtk3_la-glib-compat.Plo + -rm -f ./$(DEPDIR)/libfm_gtk3_la-gtk-compat.Plo + -rm -f ./$(DEPDIR)/libfm_gtk_la-fm-gtk.Plo + -rm -f ./$(DEPDIR)/libfm_gtk_la-glib-compat.Plo + -rm -f ./$(DEPDIR)/libfm_gtk_la-gtk-compat.Plo + -rm -f ./$(DEPDIR)/libfm_la-fm.Plo + -rm -f ./$(DEPDIR)/libfm_la-glib-compat.Plo + -rm -f ./$(DEPDIR)/libfm_pref_apps-glib-compat.Po + -rm -f ./$(DEPDIR)/libfm_pref_apps-gtk-compat.Po + -rm -f ./$(DEPDIR)/libgiofm_la-glib-compat.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-action.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-app-info.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-archiver.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-bookmarks.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-config.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-dummy-monitor.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-file-info.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-file-launcher.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-file.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-folder-config.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-folder.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-icon.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-list.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-marshal.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-mime-type.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-module.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-monitor.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-nav-history.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-path.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-templates.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-terminal.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-thumbnail-loader.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-thumbnailer.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-utils.Plo + -rm -f demo/$(DEPDIR)/libfm_demo-libfm-demo.Po + -rm -f demo/$(DEPDIR)/libfm_demo-main-win.Po + -rm -f extra/$(DEPDIR)/libfm_extra_la-fm-xml-file.Plo + -rm -f gio/$(DEPDIR)/libgiofm_la-fm-app-lookup.Plo + -rm -f gio/$(DEPDIR)/libgiofm_la-module.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-chooser-combo-box.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-chooser-dlg.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-menu-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-cell-renderer-pixbuf.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-cell-renderer-text.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-clipboard.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-dir-tree-model.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-dir-tree-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-auto-scroll.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-dest.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-src.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-file-menu.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-file-properties.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-folder-model.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-folder-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-file-launcher.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-marshal.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-utils.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-icon-pixbuf.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-menu-tool-item.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-path-bar.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-path-entry.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-places-model.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-places-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-progress-dlg.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-side-pane.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-standard-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-tab-label.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-thumbnail.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-app-chooser-combo-box.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-app-chooser-dlg.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-app-menu-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-cell-renderer-pixbuf.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-cell-renderer-text.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-clipboard.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-dir-tree-model.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-dir-tree-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-auto-scroll.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-dest.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-src.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-file-menu.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-file-properties.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-folder-model.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-folder-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-file-launcher.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-marshal.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-utils.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-icon-pixbuf.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-menu-tool-item.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-path-bar.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-path-entry.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-places-model.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-places-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-progress-dlg.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-side-pane.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-standard-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-tab-label.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-thumbnail.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-icon-view.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-marshal.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-private.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-string.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-tree-view.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-icon-view.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-marshal.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-private.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-string.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-tree-view.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-deep-count-job.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-dir-list-job.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-file-info-job.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-file-ops-job-change-attr.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-file-ops-job-delete.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-file-ops-job-xfer.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-file-ops-job.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-job.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-simple-job.Plo + -rm -f tools/$(DEPDIR)/libfm_pref_apps-libfm-pref-apps.Po + -rm -f tools/$(DEPDIR)/lxshortcut-lxshortcut.Po + -rm -f udisks/$(DEPDIR)/libfm_la-dbus-utils.Plo + -rm -f udisks/$(DEPDIR)/libfm_la-fm-udisks.Plo + -rm -f udisks/$(DEPDIR)/libfm_la-g-udisks-device.Plo + -rm -f udisks/$(DEPDIR)/libfm_la-g-udisks-drive.Plo + -rm -f udisks/$(DEPDIR)/libfm_la-g-udisks-mount.Plo + -rm -f udisks/$(DEPDIR)/libfm_la-g-udisks-volume-monitor.Plo + -rm -f udisks/$(DEPDIR)/libfm_la-g-udisks-volume.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -3026,7 +3291,134 @@ installcheck-am: maintainer-clean: maintainer-clean-recursive - -rm -rf ./$(DEPDIR) base/$(DEPDIR) demo/$(DEPDIR) extra/$(DEPDIR) gio/$(DEPDIR) gtk/$(DEPDIR) gtk/exo/$(DEPDIR) job/$(DEPDIR) tools/$(DEPDIR) udisks/$(DEPDIR) + -rm -f ./$(DEPDIR)/libfm_demo-glib-compat.Po + -rm -f ./$(DEPDIR)/libfm_demo-gtk-compat.Po + -rm -f ./$(DEPDIR)/libfm_gtk3_la-fm-gtk.Plo + -rm -f ./$(DEPDIR)/libfm_gtk3_la-glib-compat.Plo + -rm -f ./$(DEPDIR)/libfm_gtk3_la-gtk-compat.Plo + -rm -f ./$(DEPDIR)/libfm_gtk_la-fm-gtk.Plo + -rm -f ./$(DEPDIR)/libfm_gtk_la-glib-compat.Plo + -rm -f ./$(DEPDIR)/libfm_gtk_la-gtk-compat.Plo + -rm -f ./$(DEPDIR)/libfm_la-fm.Plo + -rm -f ./$(DEPDIR)/libfm_la-glib-compat.Plo + -rm -f ./$(DEPDIR)/libfm_pref_apps-glib-compat.Po + -rm -f ./$(DEPDIR)/libfm_pref_apps-gtk-compat.Po + -rm -f ./$(DEPDIR)/libgiofm_la-glib-compat.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-action.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-app-info.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-archiver.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-bookmarks.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-config.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-dummy-monitor.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-file-info.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-file-launcher.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-file.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-folder-config.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-folder.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-icon.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-list.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-marshal.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-mime-type.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-module.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-monitor.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-nav-history.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-path.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-templates.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-terminal.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-thumbnail-loader.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-thumbnailer.Plo + -rm -f base/$(DEPDIR)/libfm_la-fm-utils.Plo + -rm -f demo/$(DEPDIR)/libfm_demo-libfm-demo.Po + -rm -f demo/$(DEPDIR)/libfm_demo-main-win.Po + -rm -f extra/$(DEPDIR)/libfm_extra_la-fm-xml-file.Plo + -rm -f gio/$(DEPDIR)/libgiofm_la-fm-app-lookup.Plo + -rm -f gio/$(DEPDIR)/libgiofm_la-module.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-chooser-combo-box.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-chooser-dlg.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-app-menu-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-cell-renderer-pixbuf.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-cell-renderer-text.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-clipboard.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-dir-tree-model.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-dir-tree-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-auto-scroll.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-dest.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-dnd-src.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-file-menu.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-file-properties.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-folder-model.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-folder-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-file-launcher.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-marshal.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-gtk-utils.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-icon-pixbuf.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-menu-tool-item.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-path-bar.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-path-entry.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-places-model.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-places-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-progress-dlg.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-side-pane.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-standard-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-tab-label.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk3_la-fm-thumbnail.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-app-chooser-combo-box.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-app-chooser-dlg.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-app-menu-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-cell-renderer-pixbuf.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-cell-renderer-text.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-clipboard.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-dir-tree-model.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-dir-tree-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-auto-scroll.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-dest.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-dnd-src.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-file-menu.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-file-properties.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-folder-model.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-folder-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-file-launcher.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-marshal.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-gtk-utils.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-icon-pixbuf.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-menu-tool-item.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-path-bar.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-path-entry.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-places-model.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-places-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-progress-dlg.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-side-pane.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-standard-view.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-tab-label.Plo + -rm -f gtk/$(DEPDIR)/libfm_gtk_la-fm-thumbnail.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-icon-view.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-marshal.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-private.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-string.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk3_la-exo-tree-view.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-icon-view.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-marshal.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-private.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-string.Plo + -rm -f gtk/exo/$(DEPDIR)/libfm_gtk_la-exo-tree-view.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-deep-count-job.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-dir-list-job.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-file-info-job.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-file-ops-job-change-attr.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-file-ops-job-delete.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-file-ops-job-xfer.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-file-ops-job.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-job.Plo + -rm -f job/$(DEPDIR)/libfm_la-fm-simple-job.Plo + -rm -f tools/$(DEPDIR)/libfm_pref_apps-libfm-pref-apps.Po + -rm -f tools/$(DEPDIR)/lxshortcut-lxshortcut.Po + -rm -f udisks/$(DEPDIR)/libfm_la-dbus-utils.Plo + -rm -f udisks/$(DEPDIR)/libfm_la-fm-udisks.Plo + -rm -f udisks/$(DEPDIR)/libfm_la-g-udisks-device.Plo + -rm -f udisks/$(DEPDIR)/libfm_la-g-udisks-drive.Plo + -rm -f udisks/$(DEPDIR)/libfm_la-g-udisks-mount.Plo + -rm -f udisks/$(DEPDIR)/libfm_la-g-udisks-volume-monitor.Plo + -rm -f udisks/$(DEPDIR)/libfm_la-g-udisks-volume.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -3048,18 +3440,18 @@ uninstall-pkgincludeHEADERS .MAKE: $(am__recursive_targets) all check install install-am \ - install-strip + install-exec install-strip -.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ - check-am clean clean-binPROGRAMS clean-generic \ - clean-giomodulesLTLIBRARIES clean-libLTLIBRARIES 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-data-local install-dvi install-dvi-am install-exec \ - install-exec-am install-giomodulesLTLIBRARIES install-html \ - install-html-am install-info install-info-am \ +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ + am--depfiles check check-am clean clean-binPROGRAMS \ + clean-generic clean-giomodulesLTLIBRARIES clean-libLTLIBRARIES \ + 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-data-local install-dvi install-dvi-am \ + install-exec install-exec-am install-giomodulesLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ install-libLTLIBRARIES install-man install-pdf install-pdf-am \ install-pkgincludeHEADERS install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/actions/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/src/actions/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# 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, @@ -136,7 +136,12 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/libfmactions_la-action.Plo \ + ./$(DEPDIR)/libfmactions_la-condition.Plo \ + ./$(DEPDIR)/libfmactions_la-parameters.Plo \ + ./$(DEPDIR)/libfmactions_la-profile.Plo \ + ./$(DEPDIR)/libfmactions_la-utils.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -219,9 +224,9 @@ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(srcdir)/libfmactions_la_vala.stamp $(top_srcdir)/depcomp \ - action.c condition.c parameters.c profile.c utils.c +am__DIST_COMMON = $(builddir)/libfmactions_la_vala.stamp \ + $(srcdir)/Makefile.in $(top_srcdir)/depcomp action.c \ + condition.c parameters.c profile.c utils.c DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ACTIONS_SUBDIR = @ACTIONS_SUBDIR@ @@ -472,8 +477,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + 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) @@ -505,11 +510,17 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-action.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-condition.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-parameters.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-profile.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-utils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-action.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-condition.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-parameters.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-profile.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfmactions_la-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$$||'`;\ @@ -569,34 +580,44 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utils.c' object='libfmactions_la-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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libfmactions_la_CFLAGS) $(CFLAGS) -c -o libfmactions_la-utils.lo `test -f 'utils.c' || echo '$(srcdir)/'`utils.c -$(srcdir)/action.c: $(srcdir)/libfmactions_la_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/libfmactions_la_vala.stamp; fi +$(builddir)/action.c: $(builddir)/libfmactions_la_vala.stamp + @if test ! -f $@ && test $(srcdir) != $(builddir) && test -n "$$(find -L $(srcdir)/action.c -prune -newer $(srcdir)/action.vala)"; then cp -p $(srcdir)/action.c $(builddir)/action.c; fi + @if test -f $@; then :; else rm -f $(builddir)/libfmactions_la_vala.stamp; fi @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/libfmactions_la_vala.stamp; \ + $(MAKE) $(AM_MAKEFLAGS) $(builddir)/libfmactions_la_vala.stamp; \ + if test $(builddir) != .; then mv action.c $(builddir)/; fi \ fi -$(srcdir)/condition.c: $(srcdir)/libfmactions_la_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/libfmactions_la_vala.stamp; fi +$(builddir)/condition.c: $(builddir)/libfmactions_la_vala.stamp + @if test ! -f $@ && test $(srcdir) != $(builddir) && test -n "$$(find -L $(srcdir)/condition.c -prune -newer $(srcdir)/condition.vala)"; then cp -p $(srcdir)/condition.c $(builddir)/condition.c; fi + @if test -f $@; then :; else rm -f $(builddir)/libfmactions_la_vala.stamp; fi @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/libfmactions_la_vala.stamp; \ + $(MAKE) $(AM_MAKEFLAGS) $(builddir)/libfmactions_la_vala.stamp; \ + if test $(builddir) != .; then mv condition.c $(builddir)/; fi \ fi -$(srcdir)/profile.c: $(srcdir)/libfmactions_la_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/libfmactions_la_vala.stamp; fi +$(builddir)/profile.c: $(builddir)/libfmactions_la_vala.stamp + @if test ! -f $@ && test $(srcdir) != $(builddir) && test -n "$$(find -L $(srcdir)/profile.c -prune -newer $(srcdir)/profile.vala)"; then cp -p $(srcdir)/profile.c $(builddir)/profile.c; fi + @if test -f $@; then :; else rm -f $(builddir)/libfmactions_la_vala.stamp; fi @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/libfmactions_la_vala.stamp; \ + $(MAKE) $(AM_MAKEFLAGS) $(builddir)/libfmactions_la_vala.stamp; \ + if test $(builddir) != .; then mv profile.c $(builddir)/; fi \ fi -$(srcdir)/parameters.c: $(srcdir)/libfmactions_la_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/libfmactions_la_vala.stamp; fi +$(builddir)/parameters.c: $(builddir)/libfmactions_la_vala.stamp + @if test ! -f $@ && test $(srcdir) != $(builddir) && test -n "$$(find -L $(srcdir)/parameters.c -prune -newer $(srcdir)/parameters.vala)"; then cp -p $(srcdir)/parameters.c $(builddir)/parameters.c; fi + @if test -f $@; then :; else rm -f $(builddir)/libfmactions_la_vala.stamp; fi @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/libfmactions_la_vala.stamp; \ + $(MAKE) $(AM_MAKEFLAGS) $(builddir)/libfmactions_la_vala.stamp; \ + if test $(builddir) != .; then mv parameters.c $(builddir)/; fi \ fi -$(srcdir)/utils.c: $(srcdir)/libfmactions_la_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/libfmactions_la_vala.stamp; fi +$(builddir)/utils.c: $(builddir)/libfmactions_la_vala.stamp + @if test ! -f $@ && test $(srcdir) != $(builddir) && test -n "$$(find -L $(srcdir)/utils.c -prune -newer $(srcdir)/utils.vala)"; then cp -p $(srcdir)/utils.c $(builddir)/utils.c; fi + @if test -f $@; then :; else rm -f $(builddir)/libfmactions_la_vala.stamp; fi @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/libfmactions_la_vala.stamp; \ + $(MAKE) $(AM_MAKEFLAGS) $(builddir)/libfmactions_la_vala.stamp; \ + if test $(builddir) != .; then mv utils.c $(builddir)/; fi \ fi -$(srcdir)/libfmactions_la_vala.stamp: action.vala condition.vala profile.vala parameters.vala utils.vala +$(builddir)/libfmactions_la_vala.stamp: action.vala condition.vala profile.vala parameters.vala utils.vala $(AM_V_at)rm -f $@ && echo stamp > $@-t - $(AM_V_VALAC)$(am__cd) $(srcdir) && $(VALAC) $(AM_VALAFLAGS) $(VALAFLAGS) -C action.vala condition.vala profile.vala parameters.vala utils.vala + $(AM_V_VALAC)$(VALAC) $(AM_VALAFLAGS) $(VALAFLAGS) -C $^ $(AM_V_at)mv -f $@-t $@ mostlyclean-libtool: @@ -678,7 +699,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +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)'; \ @@ -741,13 +765,18 @@ 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 $(builddir)/action.c + -rm -f $(builddir)/condition.c + -rm -f $(builddir)/parameters.c + -rm -f $(builddir)/profile.c + -rm -f $(builddir)/utils.c maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." + -rm -f $(builddir)/libfmactions_la_vala.stamp -rm -f $(srcdir)/action.c -rm -f $(srcdir)/condition.c - -rm -f $(srcdir)/libfmactions_la_vala.stamp -rm -f $(srcdir)/parameters.c -rm -f $(srcdir)/profile.c -rm -f $(srcdir)/utils.c @@ -762,7 +791,11 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libfmactions_la-action.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-condition.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-parameters.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-profile.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-utils.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -808,7 +841,11 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libfmactions_la-action.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-condition.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-parameters.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-profile.Plo + -rm -f ./$(DEPDIR)/libfmactions_la-utils.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -829,19 +866,20 @@ .MAKE: install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am 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-libfmactionsincludeHEADERS 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 \ +.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-libfmactionsincludeHEADERS 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-libfmactionsincludeHEADERS .PRECIOUS: Makefile
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/base/fm-action.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/base/fm-action.c
Changed
@@ -1,7 +1,9 @@ /* * fm-action.c * - * Copyright 2014-2018 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> + * Copyright 2014-2021 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> + * Copyright 2020 Leonardo Citrolo <leoc@users.sourceforge.net> + * Copyright 2020 wb9688 <wb9688@users.noreply.github.com> * * This file is a part of the Libfm library. * @@ -660,15 +662,12 @@ struct ChildSetup { - char *display; char *sn_id; }; static void child_setup(gpointer user_data) { struct ChildSetup* data = (struct ChildSetup*)user_data; - if (data->display) - g_setenv("DISPLAY", data->display, TRUE); if (data->sn_id) g_setenv("DESKTOP_STARTUP_ID", data->sn_id, TRUE); } @@ -721,7 +720,6 @@ GList *launched_files, *l; struct ChildSetup data; - data.display = NULL; data.sn_id = NULL; if (launch_context) { @@ -731,9 +729,6 @@ launched_files = g_list_prepend(launched_files, fm_path_to_gfile(fm_file_info_get_path(l->data))); launched_files = g_list_reverse(launched_files); - data.display = g_app_launch_context_get_display(launch_context, - G_APP_INFO(action), - launched_files); if (action->use_sn) data.sn_id = g_app_launch_context_get_startup_notify_id(launch_context, G_APP_INFO(action), @@ -752,6 +747,7 @@ if (data.sn_id) g_app_launch_context_launch_failed(launch_context, data.sn_id); } + g_free(data.sn_id); g_strfreev(argv); } @@ -1272,6 +1268,8 @@ c++, type = CONDITION_TYPE_COUNT_LESS; else if (c0 == '>') c++, type = CONDITION_TYPE_COUNT_MORE; + else if (c0 == '=') + c++, type = CONDITION_TYPE_COUNT; else type = CONDITION_TYPE_COUNT; while (c0 == ' ') c++; @@ -1872,7 +1870,7 @@ { if (strncmp(&tst1, "all/", 4) == 0) { - if (strcmp(&tst5, "allfiles")) + if (strcmp(&tst5, "allfiles") == 0) { for (l = flist; match && l; l = l->next) if (S_ISREG(fm_file_info_get_mode(l->data))) @@ -1902,7 +1900,7 @@ { if (strncmp(tst, "all/", 4) == 0) { - if (strcmp(&tst4, "allfiles")) + if (strcmp(&tst4, "allfiles") == 0) { for (l = flist; l; l = l->next) if (!S_ISREG(fm_file_info_get_mode(l->data)))
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/base/fm-app-info.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/base/fm-app-info.c
Changed
@@ -3,6 +3,7 @@ * * Copyright 2010 Hong Jen Yee (PCMan) <pcman.tw@gmail.com> * Copyright 2012-2015 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> + * Copyright 2020 wb9688 <wb9688@users.noreply.github.com> * * This file is a part of the Libfm library. * @@ -214,7 +215,6 @@ struct ChildSetup { - char* display; char* sn_id; pid_t pgid; }; @@ -222,8 +222,6 @@ static void child_setup(gpointer user_data) { struct ChildSetup* data = (struct ChildSetup*)user_data; - if(data->display) - g_setenv ("DISPLAY", data->display, TRUE); if(data->sn_id) g_setenv ("DESKTOP_STARTUP_ID", data->sn_id, TRUE); /* Move child to grandparent group so it will not die with parent */ @@ -340,7 +338,6 @@ } else use_sn = FALSE; - data.display = g_app_launch_context_get_display(ctx, appinfo, gfiles); if(use_sn) data.sn_id = g_app_launch_context_get_startup_notify_id(ctx, appinfo, gfiles); @@ -348,10 +345,8 @@ data.sn_id = NULL; } else - { - data.display = NULL; data.sn_id = NULL; - } + g_debug("sn_id = %s", data.sn_id); if(G_LIKELY(kf)) @@ -372,7 +367,6 @@ g_app_launch_context_launch_failed(ctx, data.sn_id); g_free(path); - g_free(data.display); g_free(data.sn_id); g_strfreev(argv);
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/base/fm-file-info.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/base/fm-file-info.c
Changed
@@ -5,6 +5,7 @@ * Copyright 2009 Juergen Hoetzel <juergen@archlinux.org> * Copyright 2017 Tsu Jan <tsujan2000@gmail.com> * Copyright 2012-2018 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> + * Copyright 2019 Mahmoud Al-Qudsi <mqudsi@neosmart.net> * * This file is a part of the Libfm library. * @@ -1393,7 +1394,8 @@ which may be considered as a safe desktop entry path then check if that is a shortcut to a native file otherwise it is a link to a file under menu:// */ - if (!g_str_has_prefix(fi->target, "/usr/share/")) + if (!g_str_has_prefix(fi->target, "/usr/share/") && + !g_str_has_prefix(fi->target, "/usr/local/share/")) { FmPath *target = fm_path_new_for_str(fi->target); gboolean is_native = fm_path_is_native(target);
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/base/fm-path.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/base/fm-path.c
Changed
@@ -1291,7 +1291,7 @@ } else { - name = desktop_dir + home_len + 1; /* skip home_path dir part / */ + name = desktop_dir + home_len; /* skip home_path dir part / */ while (*name == '/') name++; /* skip extra / if any */ if (*name == '\0') name = "Desktop"; /* fallback: never use home_path as desktop_path */
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/base/fm-terminal.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/base/fm-terminal.c
Changed
@@ -135,7 +135,7 @@ else /* unknown terminal */ { if (strcmp(basename, "x-terminal-emulator") == 0) - g_message("x-terminal-emulator has very limited support, consider choose another terminal"); + g_message("x-terminal-emulator has very limited support, consider choosing another terminal"); else g_warning("terminal %s isn't known, consider report it to LibFM developers", basename);
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/base/fm-thumbnail-loader.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/base/fm-thumbnail-loader.c
Changed
@@ -3,6 +3,7 @@ * * Copyright 2010 - 2013 Hong Jen Yee (PCMan) <pcman.tw@gmail.com> * Copyright 2012-2018 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> + * Copyright 2020 Ingo Brückl <ib@wupperonline.de> * * This file is a part of the Libfm library. * @@ -746,7 +747,7 @@ /* in main loop */ void _fm_thumbnail_loader_init() { - thumb_dir = g_build_filename(fm_get_home_dir(), ".thumbnails", NULL); + thumb_dir = g_build_filename(g_get_user_cache_dir(), "thumbnails", NULL); hash = g_hash_table_new((GHashFunc)fm_path_hash, (GEqualFunc)fm_path_equal); #if !GLIB_CHECK_VERSION(2, 32, 0) lock_ptr = g_mutex_new();
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/fm-version.h -> _service:tar_scm:libfm-1.3.2.tar.xz/src/fm-version.h
Changed
@@ -23,7 +23,7 @@ #define FM_VERSION_MAJOR 1 #define FM_VERSION_MINOR 3 -#define FM_VERSION_MICRO 1 +#define FM_VERSION_MICRO 2 #define FM_CHECK_VERSION(_a,_b,_c) \ (FM_VERSION_MAJOR > _a || \
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/gtk/exo/exo-icon-view.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/gtk/exo/exo-icon-view.c
Changed
@@ -8654,6 +8654,7 @@ gtk_window_group_add_window (group, GTK_WINDOW (icon_view->priv->search_window)); gtk_window_set_modal (GTK_WINDOW (icon_view->priv->search_window), TRUE); gtk_window_set_screen (GTK_WINDOW (icon_view->priv->search_window), gtk_widget_get_screen (GTK_WIDGET (icon_view))); + gtk_window_set_transient_for (GTK_WINDOW (icon_view->priv->search_window), GTK_WINDOW (toplevel)); /* connect signal handlers */ g_signal_connect (G_OBJECT (icon_view->priv->search_window), "delete-event", G_CALLBACK (exo_icon_view_search_delete_event), icon_view);
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/gtk/fm-cell-renderer-text.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/gtk/fm-cell-renderer-text.c
Changed
@@ -4,6 +4,7 @@ * Copyright 2009 PCMan <pcman.tw@gmail.com> * Copyright 2012-2016 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> * Copyright 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> + * Copyright 2020 wb9688 <wb9688@users.noreply.github.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -460,9 +461,9 @@ _get_size(cell, widget, NULL, text, NULL, NULL, &height, NULL, NULL, NULL, NULL, NULL); g_free(text); - if(natural_size && *natural_size > height) + if(natural_size) *natural_size = height; - if(minimum_size && *minimum_size > height) + if(minimum_size) *minimum_size = height; }
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/gtk/fm-progress-dlg.c -> _service:tar_scm:libfm-1.3.2.tar.xz/src/gtk/fm-progress-dlg.c
Changed
@@ -4,6 +4,7 @@ * Copyright 2009 PCMan <pcman.tw@gmail.com> * Copyright 2012-2015 Andriy Grytsenko (LStranger) <andrej@rep.kiev.ua> * Copyright 2017 Nathan Osman <nathan@quickmediasolutions.com> + * Copyright 2019 Simon Long <simon@raspberrypi.org> * * 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 @@ -506,7 +507,7 @@ static void on_percent(FmFileOpsJob* job, guint percent, FmProgressDisplay* data) { - data->data_transferred_size = job->finished; + data->data_transferred_size = job->finished + job->current_file_finished; data->data_total_size = job->total; data->percent = percent; if(data->dlg && data->update_timeout == 0)
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/modules/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/src/modules/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# 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, @@ -204,7 +204,13 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/gtk_fileprop_x_desktop_la-gtk-fileprop-x-desktop.Plo \ + ./$(DEPDIR)/gtk_fileprop_x_shortcut_la-gtk-fileprop-x-shortcut.Plo \ + ./$(DEPDIR)/gtk_menu_actions_la-gtk-menu-actions.Plo \ + ./$(DEPDIR)/gtk_menu_trash_la-gtk-menu-trash.Plo \ + ./$(DEPDIR)/vfs-search.Plo \ + ./$(DEPDIR)/vfs_menu_la-vfs-menu.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -489,8 +495,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + 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) @@ -561,12 +567,18 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_fileprop_x_desktop_la-gtk-fileprop-x-desktop.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_fileprop_x_shortcut_la-gtk-fileprop-x-shortcut.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_menu_actions_la-gtk-menu-actions.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_menu_trash_la-gtk-menu-trash.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vfs-search.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vfs_menu_la-vfs-menu.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_fileprop_x_desktop_la-gtk-fileprop-x-desktop.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_fileprop_x_shortcut_la-gtk-fileprop-x-shortcut.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_menu_actions_la-gtk-menu-actions.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtk_menu_trash_la-gtk-menu-trash.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vfs-search.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vfs_menu_la-vfs-menu.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$$||'`;\ @@ -685,7 +697,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +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)'; \ @@ -758,7 +773,12 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/gtk_fileprop_x_desktop_la-gtk-fileprop-x-desktop.Plo + -rm -f ./$(DEPDIR)/gtk_fileprop_x_shortcut_la-gtk-fileprop-x-shortcut.Plo + -rm -f ./$(DEPDIR)/gtk_menu_actions_la-gtk-menu-actions.Plo + -rm -f ./$(DEPDIR)/gtk_menu_trash_la-gtk-menu-trash.Plo + -rm -f ./$(DEPDIR)/vfs-search.Plo + -rm -f ./$(DEPDIR)/vfs_menu_la-vfs-menu.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -805,7 +825,12 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/gtk_fileprop_x_desktop_la-gtk-fileprop-x-desktop.Plo + -rm -f ./$(DEPDIR)/gtk_fileprop_x_shortcut_la-gtk-fileprop-x-shortcut.Plo + -rm -f ./$(DEPDIR)/gtk_menu_actions_la-gtk-menu-actions.Plo + -rm -f ./$(DEPDIR)/gtk_menu_trash_la-gtk-menu-trash.Plo + -rm -f ./$(DEPDIR)/vfs-search.Plo + -rm -f ./$(DEPDIR)/vfs_menu_la-vfs-menu.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -827,20 +852,21 @@ $(MAKE) $(AM_MAKEFLAGS) uninstall-hook .MAKE: install-am install-exec-am install-strip uninstall-am -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-pkglibLTLIBRARIES 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-exec-hook install-html install-html-am \ - install-info install-info-am install-man install-pdf \ - install-pdf-am install-pkglibLTLIBRARIES 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-hook uninstall-pkglibLTLIBRARIES +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ + clean-generic clean-libtool clean-pkglibLTLIBRARIES \ + 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-exec-hook install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-pkglibLTLIBRARIES \ + 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-hook \ + uninstall-pkglibLTLIBRARIES .PRECIOUS: Makefile
View file
_service:tar_scm:libfm-1.3.1.tar.xz/src/tests/Makefile.in -> _service:tar_scm:libfm-1.3.2.tar.xz/src/tests/Makefile.in
Changed
@@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. +# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2014 Free Software Foundation, Inc. +# 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, @@ -135,7 +135,9 @@ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/libfm-file-search-cli-demo.Po \ + ./$(DEPDIR)/test-fm-path.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) @@ -414,8 +416,8 @@ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + 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)/Makefile.decl $(am__empty): @@ -451,8 +453,14 @@ distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm-file-search-cli-demo.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-fm-path.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libfm-file-search-cli-demo.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-fm-path.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$$||'`;\ @@ -536,7 +544,10 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +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)'; \ @@ -607,7 +618,8 @@ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libfm-file-search-cli-demo.Po + -rm -f ./$(DEPDIR)/test-fm-path.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -653,7 +665,8 @@ installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/libfm-file-search-cli-demo.Po + -rm -f ./$(DEPDIR)/test-fm-path.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -674,19 +687,19 @@ .MAKE: check-am install-am install-strip -.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local 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 +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am \ + check-local 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
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2