diff -Nru mate-notification-daemon-1.16.0/aclocal.m4 mate-notification-daemon-1.16.1/aclocal.m4 --- mate-notification-daemon-1.16.0/aclocal.m4 2016-09-20 04:36:00.000000000 +0000 +++ mate-notification-daemon-1.16.1/aclocal.m4 2016-12-10 20:55:24.000000000 +0000 @@ -766,8 +766,8 @@ ]) # nls.m4 serial 5 (gettext-0.18) -dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016 Free Software -dnl Foundation, Inc. +dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014 Free Software Foundation, +dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -799,7 +799,7 @@ ]) dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -dnl serial 11 (pkg-config-0.29) +dnl serial 11 (pkg-config-0.29.1) dnl dnl Copyright © 2004 Scott James Remnant . dnl Copyright © 2012-2015 Dan Nicholson @@ -841,7 +841,7 @@ dnl See the "Since" comment for each macro you use to see what version dnl of the macros you require. m4_defun([PKG_PREREQ], -[m4_define([PKG_MACROS_VERSION], [0.29]) +[m4_define([PKG_MACROS_VERSION], [0.29.1]) m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) ])dnl PKG_PREREQ diff -Nru mate-notification-daemon-1.16.0/ChangeLog mate-notification-daemon-1.16.1/ChangeLog --- mate-notification-daemon-1.16.0/ChangeLog 2016-09-20 04:36:15.000000000 +0000 +++ mate-notification-daemon-1.16.1/ChangeLog 2016-12-10 20:55:40.000000000 +0000 @@ -1,3 +1,38 @@ +commit 92b95717f3cd3261a6abccc0ee3d26e90f4efdf8 +Author: monsta +Date: Sat Dec 10 23:50:19 2016 +0300 + + release 1.16.1 + + NEWS | 4 ++++ + configure.ac | 2 +- + 2 files changed, 5 insertions(+), 1 deletion(-) + +commit 0f65febb6a75c883b57fe2ec1ca96237aacea6cd +Author: monsta +Date: Sat Dec 10 16:41:46 2016 +0300 + + sync with Transifex + + po/bg.po | 15 ++++++++------- + po/hy.po | 15 ++++++++------- + po/nb.po | 24 ++++++++++++------------ + po/pl.po | 13 +++++++------ + po/pt.po | 15 ++++++++------- + 5 files changed, 43 insertions(+), 39 deletions(-) + +commit 3fa974b37a629eab3668b2565dd0c59dbe38c1a8 +Author: kajzer +Date: Fri Oct 7 16:48:19 2016 +0200 + + Fix: bold formatting #111 + + src/themes/coco/coco-theme.c | 13 +++++-------- + src/themes/nodoka/nodoka-theme.c | 13 +++++-------- + src/themes/slider/theme.c | 11 ++++------- + src/themes/standard/theme.c | 11 ++++------- + 4 files changed, 18 insertions(+), 30 deletions(-) + commit 7bf293b7c187f12c9b2697ba2b6e02b3281b574a Author: raveit65 Date: Tue Sep 20 06:35:27 2016 +0200 diff -Nru mate-notification-daemon-1.16.0/config.guess mate-notification-daemon-1.16.1/config.guess --- mate-notification-daemon-1.16.0/config.guess 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/config.guess 2016-12-10 20:55:26.000000000 +0000 @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2015 Free Software Foundation, Inc. -timestamp='2015-01-01' +timestamp='2015-08-20' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -168,20 +168,27 @@ # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ + /sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || \ + echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; + earmv*) + arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'` + endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'` + machine=${arch}${endian}-unknown + ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in - arm*|i386|m68k|ns32k|sh3*|sparc|vax) + arm*|earm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ @@ -197,6 +204,13 @@ os=netbsd ;; esac + # Determine ABI tags. + case "${UNAME_MACHINE_ARCH}" in + earm*) + expr='s/^earmv[0-9]/-eabi/;s/eb$//' + abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"` + ;; + esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need @@ -207,13 +221,13 @@ release='-gnu' ;; *) - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}" + echo "${machine}-${os}${release}${abi}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` @@ -235,6 +249,9 @@ *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; + *:Sortix:*:*) + echo ${UNAME_MACHINE}-unknown-sortix + exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) @@ -933,6 +950,9 @@ crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; + e2k:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; @@ -1021,7 +1041,7 @@ echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} diff -Nru mate-notification-daemon-1.16.0/config.sub mate-notification-daemon-1.16.1/config.sub --- mate-notification-daemon-1.16.0/config.sub 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/config.sub 2016-12-10 20:55:26.000000000 +0000 @@ -2,7 +2,7 @@ # Configuration validation subroutine script. # Copyright 1992-2015 Free Software Foundation, Inc. -timestamp='2015-01-01' +timestamp='2015-08-20' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -117,7 +117,7 @@ case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ - knetbsd*-gnu* | netbsd*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os @@ -255,11 +255,12 @@ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ + | ba \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ - | epiphany \ + | e2k | epiphany \ | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ @@ -305,7 +306,7 @@ | riscv32 | riscv64 \ | rl78 | rx \ | score \ - | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ @@ -376,12 +377,13 @@ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ + | ba-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ - | elxsi-* \ + | e2k-* | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ @@ -428,12 +430,13 @@ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ + | riscv32-* | riscv64-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ @@ -518,6 +521,9 @@ basic_machine=i386-pc os=-aros ;; + asmjs) + basic_machine=asmjs-unknown + ;; aux) basic_machine=m68k-apple os=-aux @@ -1025,7 +1031,7 @@ ;; ppc64) basic_machine=powerpc64-unknown ;; - ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown @@ -1373,7 +1379,7 @@ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* | -aros* \ + | -aos* | -aros* | -cloudabi* | -sortix* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ diff -Nru mate-notification-daemon-1.16.0/configure mate-notification-daemon-1.16.1/configure --- mate-notification-daemon-1.16.0/configure 2016-09-20 04:36:01.000000000 +0000 +++ mate-notification-daemon-1.16.1/configure 2016-12-10 20:55:25.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for mate-notification-daemon 1.16.0. +# Generated by GNU Autoconf 2.69 for mate-notification-daemon 1.16.1. # # Report bugs to . # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='mate-notification-daemon' PACKAGE_TARNAME='mate-notification-daemon' -PACKAGE_VERSION='1.16.0' -PACKAGE_STRING='mate-notification-daemon 1.16.0' +PACKAGE_VERSION='1.16.1' +PACKAGE_STRING='mate-notification-daemon 1.16.1' PACKAGE_BUGREPORT='http://www.mate-desktop.org' PACKAGE_URL='' @@ -814,6 +814,7 @@ docdir oldincludedir includedir +runstatedir localstatedir sharedstatedir sysconfdir @@ -919,6 +920,7 @@ sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' +runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' @@ -1171,6 +1173,15 @@ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; + -runstatedir | --runstatedir | --runstatedi | --runstated \ + | --runstate | --runstat | --runsta | --runst | --runs \ + | --run | --ru | --r) + ac_prev=runstatedir ;; + -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ + | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ + | --run=* | --ru=* | --r=*) + runstatedir=$ac_optarg ;; + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ @@ -1308,7 +1319,7 @@ for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir + libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. @@ -1421,7 +1432,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 mate-notification-daemon 1.16.0 to adapt to many kinds of systems. +\`configure' configures mate-notification-daemon 1.16.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1461,6 +1472,7 @@ --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] @@ -1492,7 +1504,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of mate-notification-daemon 1.16.0:";; + short | recursive ) echo "Configuration of mate-notification-daemon 1.16.1:";; esac cat <<\_ACEOF @@ -1641,7 +1653,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -mate-notification-daemon configure 1.16.0 +mate-notification-daemon configure 1.16.1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2064,7 +2076,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by mate-notification-daemon $as_me 1.16.0, which was +It was created by mate-notification-daemon $as_me 1.16.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2979,7 +2991,7 @@ # Define the identity of the package. PACKAGE='mate-notification-daemon' - VERSION='1.16.0' + VERSION='1.16.1' cat >>confdefs.h <<_ACEOF @@ -5799,7 +5811,7 @@ lt_cv_deplibs_check_method=pass_all ;; -netbsd*) +netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else @@ -9224,6 +9236,9 @@ openbsd* | bitrig*) with_gnu_ld=no ;; + linux* | k*bsd*-gnu | gnu*) + link_all_deplibs=no + ;; esac ld_shlibs=yes @@ -9478,7 +9493,7 @@ fi ;; - netbsd*) + netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= @@ -10148,6 +10163,7 @@ if test yes = "$lt_cv_irix_exported_symbol"; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi + link_all_deplibs=no else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' @@ -10169,7 +10185,7 @@ esac ;; - netbsd*) + netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else @@ -11264,9 +11280,6 @@ # before this can be enabled. hardcode_into_libs=yes - # Add ABI-specific directories to the system library path. - sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" - # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command @@ -11275,7 +11288,7 @@ # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -11287,6 +11300,18 @@ dynamic_linker='GNU/Linux ld.so' ;; +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + netbsd*) version_type=sunos need_lib_prefix=no @@ -15416,7 +15441,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by mate-notification-daemon $as_me 1.16.0, which was +This file was extended by mate-notification-daemon $as_me 1.16.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -15482,7 +15507,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -mate-notification-daemon config.status 1.16.0 +mate-notification-daemon config.status 1.16.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -Nru mate-notification-daemon-1.16.0/configure.ac mate-notification-daemon-1.16.1/configure.ac --- mate-notification-daemon-1.16.0/configure.ac 2016-09-20 04:35:06.000000000 +0000 +++ mate-notification-daemon-1.16.1/configure.ac 2016-12-10 20:53:45.000000000 +0000 @@ -3,7 +3,7 @@ dnl ################################################################ dnl # Initialize autoconf dnl ################################################################ -AC_INIT([mate-notification-daemon], [1.16.0], [http://www.mate-desktop.org]) +AC_INIT([mate-notification-daemon], [1.16.1], [http://www.mate-desktop.org]) AC_PREREQ(2.63) AC_CONFIG_HEADERS([config.h]) diff -Nru mate-notification-daemon-1.16.0/data/Makefile.in mate-notification-daemon-1.16.1/data/Makefile.in --- mate-notification-daemon-1.16.0/data/Makefile.in 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/data/Makefile.in 2016-12-10 20:55:26.000000000 +0000 @@ -325,6 +325,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ diff -Nru mate-notification-daemon-1.16.0/debian/changelog mate-notification-daemon-1.16.1/debian/changelog --- mate-notification-daemon-1.16.0/debian/changelog 2016-09-20 19:14:18.000000000 +0000 +++ mate-notification-daemon-1.16.1/debian/changelog 2016-12-11 01:54:47.000000000 +0000 @@ -1,3 +1,9 @@ +mate-notification-daemon (1.16.1-0~14.04.york0) trusty; urgency=medium + + * New upstream point-release + + -- Jonathon Fernyhough Sun, 11 Dec 2016 01:54:21 +0000 + mate-notification-daemon (1.16.0-0~14.04.york0) trusty; urgency=medium * New upstream release diff -Nru mate-notification-daemon-1.16.0/install-sh mate-notification-daemon-1.16.1/install-sh --- mate-notification-daemon-1.16.0/install-sh 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/install-sh 2016-12-10 20:55:26.000000000 +0000 @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2013-12-25.23; # UTC +scriptversion=2014-09-12.12; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -324,34 +324,41 @@ # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) + # $RANDOM is not portable (e.g. dash); use it when possible to + # lower collision chance tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 + # As "mkdir -p" follows symlinks and we work in /tmp possibly; so + # create the $tmpdir first (and fail if unsuccessful) to make sure + # that nobody tries to guess the $tmpdir name. if (umask $mkdir_umask && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + $mkdirprog $mkdir_mode "$tmpdir" && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - ls_ld_tmpdir=`ls -ld "$tmpdir"` + test_tmpdir="$tmpdir/a" + ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && - $mkdirprog -m$different_mode -p -- "$tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi - rmdir "$tmpdir/d" "$tmpdir" + rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null fi trap '' 0;; esac;; diff -Nru mate-notification-daemon-1.16.0/ltmain.sh mate-notification-daemon-1.16.1/ltmain.sh --- mate-notification-daemon-1.16.0/ltmain.sh 2016-09-20 04:35:55.000000000 +0000 +++ mate-notification-daemon-1.16.1/ltmain.sh 2016-12-10 20:55:20.000000000 +0000 @@ -31,7 +31,7 @@ PROGRAM=libtool PACKAGE=libtool -VERSION=2.4.6 +VERSION="2.4.6 Debian-2.4.6-0.1" package_revision=2.4.6 @@ -2073,7 +2073,7 @@ autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . -GNU libtool home page: . +GNU libtool home page: . General help using GNU software: ." exit 0 } @@ -7272,10 +7272,13 @@ # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -specs=* GCC specs files # -stdlib=* select c++ std lib with clang + # -fsanitize=* Clang/GCC memory and address sanitizer -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ - -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ + -specs=*|-fsanitize=*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result func_append compile_command " $arg" @@ -7568,7 +7571,10 @@ case $pass in dlopen) libs=$dlfiles ;; dlpreopen) libs=$dlprefiles ;; - link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; + link) + libs="$deplibs %DEPLIBS%" + test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" + ;; esac fi if test lib,dlpreopen = "$linkmode,$pass"; then @@ -7887,19 +7893,19 @@ # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_preserve_dup_deps; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done elif test prog != "$linkmode" && test lib != "$linkmode"; then func_fatal_error "'$lib' is not a convenience library" fi - tmp_libs= - for deplib in $dependency_libs; do - deplibs="$deplib $deplibs" - if $opt_preserve_dup_deps; then - case "$tmp_libs " in - *" $deplib "*) func_append specialdeplibs " $deplib" ;; - esac - fi - func_append tmp_libs " $deplib" - done continue fi # $pass = conv @@ -8823,6 +8829,9 @@ revision=$number_minor lt_irix_increment=no ;; + *) + func_fatal_configuration "$modename: unknown library version type '$version_type'" + ;; esac ;; no) diff -Nru mate-notification-daemon-1.16.0/m4/libtool.m4 mate-notification-daemon-1.16.1/m4/libtool.m4 --- mate-notification-daemon-1.16.0/m4/libtool.m4 2016-09-20 04:35:55.000000000 +0000 +++ mate-notification-daemon-1.16.1/m4/libtool.m4 2016-12-10 20:55:20.000000000 +0000 @@ -2867,9 +2867,6 @@ # before this can be enabled. hardcode_into_libs=yes - # Add ABI-specific directories to the system library path. - sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" - # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command @@ -2878,7 +2875,7 @@ # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -2890,6 +2887,18 @@ dynamic_linker='GNU/Linux ld.so' ;; +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + netbsd*) version_type=sunos need_lib_prefix=no @@ -3549,7 +3558,7 @@ lt_cv_deplibs_check_method=pass_all ;; -netbsd*) +netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else @@ -4427,7 +4436,7 @@ ;; esac ;; - netbsd*) + netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise @@ -4939,6 +4948,9 @@ ;; esac ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; @@ -5001,6 +5013,9 @@ openbsd* | bitrig*) with_gnu_ld=no ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes @@ -5255,7 +5270,7 @@ fi ;; - netbsd*) + netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= @@ -5776,6 +5791,7 @@ if test yes = "$lt_cv_irix_exported_symbol"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi + _LT_TAGVAR(link_all_deplibs, $1)=no else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' @@ -5797,7 +5813,7 @@ esac ;; - netbsd*) + netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else diff -Nru mate-notification-daemon-1.16.0/Makefile.in mate-notification-daemon-1.16.1/Makefile.in --- mate-notification-daemon-1.16.0/Makefile.in 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/Makefile.in 2016-12-10 20:55:26.000000000 +0000 @@ -371,6 +371,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ diff -Nru mate-notification-daemon-1.16.0/NEWS mate-notification-daemon-1.16.1/NEWS --- mate-notification-daemon-1.16.0/NEWS 2016-09-20 04:34:32.000000000 +0000 +++ mate-notification-daemon-1.16.1/NEWS 2016-12-10 20:53:45.000000000 +0000 @@ -1,3 +1,7 @@ +1.16.1 + * Fix markup parsing + * Translations update + 1.16.0 * Build: use 'm4' dir instead of 'macros' for m4 macros, like in other projects diff -Nru mate-notification-daemon-1.16.0/po/bg.po mate-notification-daemon-1.16.1/po/bg.po --- mate-notification-daemon-1.16.0/po/bg.po 2016-06-30 17:39:04.000000000 +0000 +++ mate-notification-daemon-1.16.1/po/bg.po 2016-12-10 20:53:45.000000000 +0000 @@ -6,13 +6,14 @@ # Elusiv_man , 2014 # Georgi Georgiev , 2015 # Pandi3a , 2013 +# Любомир Василев, 2016 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-26 09:14+0200\n" -"PO-Revision-Date: 2016-06-26 07:25+0000\n" -"Last-Translator: Wolfgang Ulbrich \n" +"POT-Creation-Date: 2016-12-06 00:49+0300\n" +"PO-Revision-Date: 2016-11-07 12:39+0000\n" +"Last-Translator: Любомир Василев\n" "Language-Team: Bulgarian (http://www.transifex.com/mate/MATE/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -156,7 +157,7 @@ msgid "Exceeded maximum number of notifications" msgstr "Надвишен е максималния брой на известията" -#: ../src/daemon/daemon.c:1583 +#: ../src/daemon/daemon.c:1599 #, c-format msgid "%u is not a valid notification ID" msgstr "%u не е валидно ID на известие" @@ -168,16 +169,16 @@ #: ../src/themes/coco/coco-theme.c:465 ../src/themes/nodoka/nodoka-theme.c:811 #: ../src/themes/slider/theme.c:417 ../src/themes/standard/theme.c:733 msgid "Notification summary text." -msgstr "" +msgstr "Кратко описание на известието." #: ../src/themes/coco/coco-theme.c:483 ../src/themes/nodoka/nodoka-theme.c:868 #: ../src/themes/slider/theme.c:442 ../src/themes/standard/theme.c:789 msgid "Notification body text." -msgstr "" +msgstr "Пълно описание на известието." #: ../src/themes/nodoka/nodoka-theme.c:825 #: ../src/themes/nodoka/nodoka-theme.c:827 ../src/themes/slider/theme.c:395 #: ../src/themes/slider/theme.c:397 ../src/themes/standard/theme.c:749 #: ../src/themes/standard/theme.c:751 msgid "Closes the notification." -msgstr "" +msgstr "Затваря известието." diff -Nru mate-notification-daemon-1.16.0/po/hy.po mate-notification-daemon-1.16.1/po/hy.po --- mate-notification-daemon-1.16.0/po/hy.po 2016-06-30 17:39:04.000000000 +0000 +++ mate-notification-daemon-1.16.1/po/hy.po 2016-12-10 20:53:45.000000000 +0000 @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# hrexen , 2016 # Siranush , 2015 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-26 09:14+0200\n" -"PO-Revision-Date: 2016-06-26 07:25+0000\n" -"Last-Translator: Wolfgang Ulbrich \n" +"POT-Creation-Date: 2016-12-06 00:49+0300\n" +"PO-Revision-Date: 2016-09-20 15:33+0000\n" +"Last-Translator: hrexen \n" "Language-Team: Armenian (http://www.transifex.com/mate/MATE/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -154,7 +155,7 @@ msgid "Exceeded maximum number of notifications" msgstr "Ծանուցումների թիվը գերազանցել է առավելագույնը" -#: ../src/daemon/daemon.c:1583 +#: ../src/daemon/daemon.c:1599 #, c-format msgid "%u is not a valid notification ID" msgstr "%u անվավեր ծանուցման ID է" @@ -166,16 +167,16 @@ #: ../src/themes/coco/coco-theme.c:465 ../src/themes/nodoka/nodoka-theme.c:811 #: ../src/themes/slider/theme.c:417 ../src/themes/standard/theme.c:733 msgid "Notification summary text." -msgstr "" +msgstr "Ծանուցման ամփոփ տեքստ:" #: ../src/themes/coco/coco-theme.c:483 ../src/themes/nodoka/nodoka-theme.c:868 #: ../src/themes/slider/theme.c:442 ../src/themes/standard/theme.c:789 msgid "Notification body text." -msgstr "" +msgstr "Ծանուցման պարունակություն:" #: ../src/themes/nodoka/nodoka-theme.c:825 #: ../src/themes/nodoka/nodoka-theme.c:827 ../src/themes/slider/theme.c:395 #: ../src/themes/slider/theme.c:397 ../src/themes/standard/theme.c:749 #: ../src/themes/standard/theme.c:751 msgid "Closes the notification." -msgstr "" +msgstr "Փակել ծանուցումը:" diff -Nru mate-notification-daemon-1.16.0/po/nb.po mate-notification-daemon-1.16.1/po/nb.po --- mate-notification-daemon-1.16.0/po/nb.po 2016-06-30 17:39:04.000000000 +0000 +++ mate-notification-daemon-1.16.1/po/nb.po 2016-12-10 20:53:45.000000000 +0000 @@ -9,9 +9,9 @@ msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-26 09:14+0200\n" -"PO-Revision-Date: 2016-06-26 07:25+0000\n" -"Last-Translator: Wolfgang Ulbrich \n" +"POT-Creation-Date: 2016-12-06 00:49+0300\n" +"PO-Revision-Date: 2016-11-17 10:15+0000\n" +"Last-Translator: Allan Nordhøy \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/mate/MATE/language/nb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ #: ../data/org.mate.NotificationDaemon.gschema.xml.in.h:1 msgid "Popup location" -msgstr "Popup plassering" +msgstr "Oppsprettsplassering" #: ../data/org.mate.NotificationDaemon.gschema.xml.in.h:2 msgid "" @@ -50,11 +50,11 @@ #: ../data/org.mate.NotificationDaemon.gschema.xml.in.h:7 msgid "Current theme" -msgstr "Aktivt tema" +msgstr "Iført drakt" #: ../data/org.mate.NotificationDaemon.gschema.xml.in.h:8 msgid "The theme used when displaying notifications." -msgstr "Tema som brukes ved visning av varslinger." +msgstr "Drakt til bruk ved visning av varslinger." #: ../data/org.mate.NotificationDaemon.gschema.xml.in.h:9 msgid "Sound Enabled" @@ -78,7 +78,7 @@ #: ../src/capplet/mate-notification-properties.c:341 msgid "Standard theme" -msgstr "Standard tema" +msgstr "Forvalgt drakt" #: ../src/capplet/mate-notification-properties.c:458 msgid "Error initializing libmatenotify" @@ -128,7 +128,7 @@ #: ../src/capplet/mate-notification-properties.ui.h:5 msgid "_Theme:" -msgstr "_Tema:" +msgstr "_Drakt:" #: ../src/capplet/mate-notification-properties.ui.h:6 msgid "_Monitor:" @@ -155,7 +155,7 @@ msgid "Exceeded maximum number of notifications" msgstr "Oversteget maksimalt antall varslinger" -#: ../src/daemon/daemon.c:1583 +#: ../src/daemon/daemon.c:1599 #, c-format msgid "%u is not a valid notification ID" msgstr "%u er ikke en gyldig varsel-ID" @@ -167,16 +167,16 @@ #: ../src/themes/coco/coco-theme.c:465 ../src/themes/nodoka/nodoka-theme.c:811 #: ../src/themes/slider/theme.c:417 ../src/themes/standard/theme.c:733 msgid "Notification summary text." -msgstr "" +msgstr "Varsling i sammendragstekst." #: ../src/themes/coco/coco-theme.c:483 ../src/themes/nodoka/nodoka-theme.c:868 #: ../src/themes/slider/theme.c:442 ../src/themes/standard/theme.c:789 msgid "Notification body text." -msgstr "" +msgstr "Varsling i kroppstekst." #: ../src/themes/nodoka/nodoka-theme.c:825 #: ../src/themes/nodoka/nodoka-theme.c:827 ../src/themes/slider/theme.c:395 #: ../src/themes/slider/theme.c:397 ../src/themes/standard/theme.c:749 #: ../src/themes/standard/theme.c:751 msgid "Closes the notification." -msgstr "" +msgstr "Lukker varslingen." diff -Nru mate-notification-daemon-1.16.0/po/pl.po mate-notification-daemon-1.16.1/po/pl.po --- mate-notification-daemon-1.16.0/po/pl.po 2016-09-20 04:34:32.000000000 +0000 +++ mate-notification-daemon-1.16.1/po/pl.po 2016-12-10 20:53:45.000000000 +0000 @@ -7,13 +7,14 @@ # Marcin Kralka , 2013 # Michal Herman , 2013 # Paweł Bandura , 2015 +# Piotr Strębski , 2016 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-26 09:14+0200\n" -"PO-Revision-Date: 2016-07-29 22:28+0000\n" -"Last-Translator: Dominik Grzywak\n" +"POT-Creation-Date: 2016-12-06 00:49+0300\n" +"PO-Revision-Date: 2016-09-26 09:43+0000\n" +"Last-Translator: Piotr Strębski \n" "Language-Team: Polish (http://www.transifex.com/mate/MATE/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -157,7 +158,7 @@ msgid "Exceeded maximum number of notifications" msgstr "Przekroczono maksymalną liczbę powiadomień" -#: ../src/daemon/daemon.c:1583 +#: ../src/daemon/daemon.c:1599 #, c-format msgid "%u is not a valid notification ID" msgstr "%u nie jest prawidłowym identyfikatorem powiadomienia" @@ -169,12 +170,12 @@ #: ../src/themes/coco/coco-theme.c:465 ../src/themes/nodoka/nodoka-theme.c:811 #: ../src/themes/slider/theme.c:417 ../src/themes/standard/theme.c:733 msgid "Notification summary text." -msgstr "" +msgstr "Tekst podsumowujący powiadomienia." #: ../src/themes/coco/coco-theme.c:483 ../src/themes/nodoka/nodoka-theme.c:868 #: ../src/themes/slider/theme.c:442 ../src/themes/standard/theme.c:789 msgid "Notification body text." -msgstr "" +msgstr "Tekst główny powiadomienia." #: ../src/themes/nodoka/nodoka-theme.c:825 #: ../src/themes/nodoka/nodoka-theme.c:827 ../src/themes/slider/theme.c:395 diff -Nru mate-notification-daemon-1.16.0/po/pt.po mate-notification-daemon-1.16.1/po/pt.po --- mate-notification-daemon-1.16.0/po/pt.po 2016-06-30 17:39:04.000000000 +0000 +++ mate-notification-daemon-1.16.1/po/pt.po 2016-12-10 20:53:45.000000000 +0000 @@ -5,14 +5,15 @@ # Translators: # crolidge, 2013 # crolidge, 2014-2015 +# Manuela Silva , 2016 # Sérgio Marques , 2012 msgid "" msgstr "" "Project-Id-Version: MATE Desktop Environment\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-26 09:14+0200\n" -"PO-Revision-Date: 2016-06-26 07:25+0000\n" -"Last-Translator: Wolfgang Ulbrich \n" +"POT-Creation-Date: 2016-12-06 00:49+0300\n" +"PO-Revision-Date: 2016-11-23 13:40+0000\n" +"Last-Translator: Manuela Silva \n" "Language-Team: Portuguese (http://www.transifex.com/mate/MATE/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -156,7 +157,7 @@ msgid "Exceeded maximum number of notifications" msgstr "Excedeu o número máximo de notificações" -#: ../src/daemon/daemon.c:1583 +#: ../src/daemon/daemon.c:1599 #, c-format msgid "%u is not a valid notification ID" msgstr "%u não é uma identificação válida" @@ -168,16 +169,16 @@ #: ../src/themes/coco/coco-theme.c:465 ../src/themes/nodoka/nodoka-theme.c:811 #: ../src/themes/slider/theme.c:417 ../src/themes/standard/theme.c:733 msgid "Notification summary text." -msgstr "" +msgstr "Texto resumo da notificação." #: ../src/themes/coco/coco-theme.c:483 ../src/themes/nodoka/nodoka-theme.c:868 #: ../src/themes/slider/theme.c:442 ../src/themes/standard/theme.c:789 msgid "Notification body text." -msgstr "" +msgstr "Texto do corpo da notificação." #: ../src/themes/nodoka/nodoka-theme.c:825 #: ../src/themes/nodoka/nodoka-theme.c:827 ../src/themes/slider/theme.c:395 #: ../src/themes/slider/theme.c:397 ../src/themes/standard/theme.c:749 #: ../src/themes/standard/theme.c:751 msgid "Closes the notification." -msgstr "" +msgstr "Fecha a notificação." diff -Nru mate-notification-daemon-1.16.0/src/capplet/Makefile.in mate-notification-daemon-1.16.1/src/capplet/Makefile.in --- mate-notification-daemon-1.16.0/src/capplet/Makefile.in 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/src/capplet/Makefile.in 2016-12-10 20:55:26.000000000 +0000 @@ -375,6 +375,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ diff -Nru mate-notification-daemon-1.16.0/src/daemon/Makefile.in mate-notification-daemon-1.16.1/src/daemon/Makefile.in --- mate-notification-daemon-1.16.0/src/daemon/Makefile.in 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/src/daemon/Makefile.in 2016-12-10 20:55:26.000000000 +0000 @@ -342,6 +342,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ diff -Nru mate-notification-daemon-1.16.0/src/Makefile.in mate-notification-daemon-1.16.1/src/Makefile.in --- mate-notification-daemon-1.16.0/src/Makefile.in 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/src/Makefile.in 2016-12-10 20:55:26.000000000 +0000 @@ -348,6 +348,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ diff -Nru mate-notification-daemon-1.16.0/src/themes/coco/coco-theme.c mate-notification-daemon-1.16.1/src/themes/coco/coco-theme.c --- mate-notification-daemon-1.16.0/src/themes/coco/coco-theme.c 2016-09-10 17:15:08.000000000 +0000 +++ mate-notification-daemon-1.16.1/src/themes/coco/coco-theme.c 2016-12-10 20:53:45.000000000 +0000 @@ -506,18 +506,15 @@ gtk_label_set_markup(GTK_LABEL(windata->summary_label), str); g_free(str); - if (strstr(body, "&") || strstr(body, "<") || strstr(body, ">") || strstr(body, "'") || strstr(body, """)) + if (pango_parse_markup (body, -1, 0, NULL, NULL, NULL, NULL)) { str = g_strdup_printf("%s", body); + gtk_label_set_markup (GTK_LABEL (windata->body_label), str); + g_free(str); } - else - { - quoted = g_markup_escape_text(body, -1); - str = g_strdup_printf("%s", quoted); - g_free(quoted); + else { + gtk_label_set_text (GTK_LABEL (windata->body_label), body); } - gtk_label_set_markup (GTK_LABEL (windata->body_label), str); - g_free(str); if (body == NULL || *body == '\0') gtk_widget_hide(windata->body_label); diff -Nru mate-notification-daemon-1.16.0/src/themes/coco/Makefile.in mate-notification-daemon-1.16.1/src/themes/coco/Makefile.in --- mate-notification-daemon-1.16.0/src/themes/coco/Makefile.in 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/src/themes/coco/Makefile.in 2016-12-10 20:55:27.000000000 +0000 @@ -369,6 +369,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ diff -Nru mate-notification-daemon-1.16.0/src/themes/Makefile.in mate-notification-daemon-1.16.1/src/themes/Makefile.in --- mate-notification-daemon-1.16.0/src/themes/Makefile.in 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/src/themes/Makefile.in 2016-12-10 20:55:26.000000000 +0000 @@ -348,6 +348,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ diff -Nru mate-notification-daemon-1.16.0/src/themes/nodoka/Makefile.in mate-notification-daemon-1.16.1/src/themes/nodoka/Makefile.in --- mate-notification-daemon-1.16.0/src/themes/nodoka/Makefile.in 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/src/themes/nodoka/Makefile.in 2016-12-10 20:55:27.000000000 +0000 @@ -369,6 +369,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ diff -Nru mate-notification-daemon-1.16.0/src/themes/nodoka/nodoka-theme.c mate-notification-daemon-1.16.1/src/themes/nodoka/nodoka-theme.c --- mate-notification-daemon-1.16.0/src/themes/nodoka/nodoka-theme.c 2016-09-10 17:15:08.000000000 +0000 +++ mate-notification-daemon-1.16.1/src/themes/nodoka/nodoka-theme.c 2016-12-10 20:53:45.000000000 +0000 @@ -891,18 +891,15 @@ gtk_label_set_markup(GTK_LABEL(windata->summary_label), str); g_free(str); - if (strstr(body, "&") || strstr(body, "<") || strstr(body, ">") || strstr(body, "'") || strstr(body, """)) + if (pango_parse_markup (body, -1, 0, NULL, NULL, NULL, NULL)) { str = g_strdup_printf("%s", body); + gtk_label_set_markup (GTK_LABEL (windata->body_label), str); + g_free(str); } - else - { - quoted = g_markup_escape_text(body, -1); - str = g_strdup_printf("%s", quoted); - g_free(quoted); + else { + gtk_label_set_text (GTK_LABEL (windata->body_label), body); } - gtk_label_set_markup(GTK_LABEL(windata->body_label), str); - g_free(str); if (body == NULL || *body == '\0') gtk_widget_hide(windata->body_label); diff -Nru mate-notification-daemon-1.16.0/src/themes/slider/Makefile.in mate-notification-daemon-1.16.1/src/themes/slider/Makefile.in --- mate-notification-daemon-1.16.0/src/themes/slider/Makefile.in 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/src/themes/slider/Makefile.in 2016-12-10 20:55:27.000000000 +0000 @@ -370,6 +370,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ diff -Nru mate-notification-daemon-1.16.0/src/themes/slider/theme.c mate-notification-daemon-1.16.1/src/themes/slider/theme.c --- mate-notification-daemon-1.16.0/src/themes/slider/theme.c 2016-09-10 17:15:08.000000000 +0000 +++ mate-notification-daemon-1.16.1/src/themes/slider/theme.c 2016-12-10 20:53:45.000000000 +0000 @@ -513,15 +513,12 @@ gtk_label_set_markup(GTK_LABEL(windata->summary_label), str); g_free(str); - if (strstr(body, "&") || strstr(body, "<") || strstr(body, ">") || strstr(body, "'") || strstr(body, """)) + if (pango_parse_markup (body, -1, 0, NULL, NULL, NULL, NULL)) { - gtk_label_set_markup(GTK_LABEL(windata->body_label), body); + gtk_label_set_markup (GTK_LABEL (windata->body_label), body); } - else - { - quoted = g_markup_escape_text(body, -1); - gtk_label_set_markup(GTK_LABEL(windata->body_label), quoted); - g_free(quoted); + else { + gtk_label_set_text (GTK_LABEL (windata->body_label), body); } if (body == NULL || *body == '\0') diff -Nru mate-notification-daemon-1.16.0/src/themes/standard/Makefile.in mate-notification-daemon-1.16.1/src/themes/standard/Makefile.in --- mate-notification-daemon-1.16.0/src/themes/standard/Makefile.in 2016-09-20 04:36:03.000000000 +0000 +++ mate-notification-daemon-1.16.1/src/themes/standard/Makefile.in 2016-12-10 20:55:27.000000000 +0000 @@ -370,6 +370,7 @@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ diff -Nru mate-notification-daemon-1.16.0/src/themes/standard/theme.c mate-notification-daemon-1.16.1/src/themes/standard/theme.c --- mate-notification-daemon-1.16.0/src/themes/standard/theme.c 2016-09-10 17:15:08.000000000 +0000 +++ mate-notification-daemon-1.16.1/src/themes/standard/theme.c 2016-12-10 20:53:45.000000000 +0000 @@ -857,15 +857,12 @@ gtk_label_set_markup(GTK_LABEL(windata->summary_label), str); g_free(str); - if (strstr(body, "&") || strstr(body, "<") || strstr(body, ">") || strstr(body, "'") || strstr(body, """)) + if (pango_parse_markup (body, -1, 0, NULL, NULL, NULL, NULL)) { - gtk_label_set_markup(GTK_LABEL(windata->body_label), body); + gtk_label_set_markup (GTK_LABEL (windata->body_label), body); } - else - { - quoted = g_markup_escape_text(body, -1); - gtk_label_set_markup(GTK_LABEL(windata->body_label), quoted); - g_free(quoted); + else { + gtk_label_set_text (GTK_LABEL (windata->body_label), body); } if (body == NULL || *body == '\0')