--- xfce4-panel-4.4.2.orig/config.guess +++ xfce4-panel-4.4.2/config.guess @@ -1,10 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, -# Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +# Free Software Foundation, Inc. -timestamp='2007-07-22' +timestamp='2008-01-23' # 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 @@ -56,8 +56,8 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -139,23 +139,6 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown -if [ "${UNAME_SYSTEM}" = "Linux" ] ; then - eval $set_cc_for_build - cat << EOF > $dummy.c - #include - #ifdef __UCLIBC__ - # ifdef __UCLIBC_CONFIG_VERSION__ - LIBC=uclibc __UCLIBC_CONFIG_VERSION__ - # else - LIBC=uclibc - # endif - #else - LIBC=gnu - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep LIBC= | sed -e 's: ::g'` -fi - # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in @@ -549,7 +532,7 @@ echo rs6000-ibm-aix3.2 fi exit ;; - *:AIX:*:[45]) + *:AIX:*:[456]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 @@ -816,6 +799,9 @@ EM64T | authenticamd) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks @@ -850,28 +836,35 @@ echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + fi exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) - echo cris-axis-linux-${LIBC} + echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) - echo crisv32-axis-linux-${LIBC} + echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) - echo frv-unknown-linux-${LIBC} + echo frv-unknown-linux-gnu exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:*) eval $set_cc_for_build @@ -894,7 +887,7 @@ s: ::g p }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build @@ -917,16 +910,16 @@ s: ::g p }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) - echo or32-unknown-linux-${LIBC} + echo or32-unknown-linux-gnu exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-${LIBC} + echo powerpc-unknown-linux-gnu exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-${LIBC} + echo powerpc64-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -939,40 +932,40 @@ EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null - if test "$?" = 0 ; then LIBC="gnulibc1" ; fi - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; - PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; - *) echo hppa-unknown-linux-${LIBC} ;; + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; esac exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-${LIBC} + echo hppa64-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-${LIBC} + echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) - echo x86_64-unknown-linux-${LIBC} + echo x86_64-unknown-linux-gnu exit ;; - xtensa:Linux:*:*) - echo xtensa-unknown-linux-${LIBC} + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so @@ -987,22 +980,20 @@ p'` case "$ld_supported_targets" in elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-${LIBC}" + TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) - echo "${UNAME_MACHINE}-pc-linux-${LIBC}aout" + echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit ;; coff-i386) - echo "${UNAME_MACHINE}-pc-linux-${LIBC}coff" + echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. - echo "${UNAME_MACHINE}-pc-linux-${LIBC}oldld" + echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit ;; esac - # This should get integrated into the C code below, but now we hack - if [ "$LIBC" != "gnu" ] ; then echo "$TENTATIVE" && exit 0 ; fi # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c @@ -1493,9 +1484,9 @@ the operating system you are using. It is advised that you download the most up to date version of the config scripts from - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD and - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD If the version you run ($0) is already up to date, please send the following data and any information you think might be --- xfce4-panel-4.4.2.orig/config.sub +++ xfce4-panel-4.4.2/config.sub @@ -1,10 +1,10 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, -# Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +# Free Software Foundation, Inc. -timestamp='2007-06-28' +timestamp='2008-01-16' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -72,8 +72,8 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -244,7 +244,7 @@ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ - | d10v | d30v | dlx | dsp16xx | dvp \ + | d10v | d30v | dlx | dsp16xx \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ @@ -277,7 +277,7 @@ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | score \ - | sh | sh[1234] | sh[24]a | sh[24]a*eb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh | sh[1234] | sh[24]a | 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 \ @@ -358,7 +358,7 @@ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[24]a*eb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ @@ -369,10 +369,14 @@ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ - | xstormy16-* | xtensa-* \ + | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-*) ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) @@ -443,6 +447,14 @@ basic_machine=ns32k-sequent os=-dynix ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; c90) basic_machine=c90-cray os=-unicos @@ -668,6 +680,14 @@ basic_machine=m68k-isi os=-sysv ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; m88k-omron*) basic_machine=m88k-omron ;; @@ -694,24 +714,6 @@ basic_machine=m68k-atari os=-mint ;; - mipsEE* | ee | ps2) - basic_machine=mips64r5900el-scei - case $os in - -linux*) - ;; - *) - os=-elf - ;; - esac - ;; - iop) - basic_machine=mipsel-scei - os=-irx - ;; - dvp) - basic_machine=dvp-scei - os=-elf - ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; @@ -831,6 +833,14 @@ basic_machine=i860-intel os=-osf ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; pbd) basic_machine=sparc-tti ;; @@ -1039,6 +1049,10 @@ basic_machine=tic6x-unknown os=-coff ;; + tile*) + basic_machine=tile-unknown + os=-linux-gnu + ;; tx39) basic_machine=mipstx39-unknown ;; @@ -1244,7 +1258,7 @@ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -irx*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) --- xfce4-panel-4.4.2.orig/debian/xfce4-panel.shlibs +++ xfce4-panel-4.4.2/debian/xfce4-panel.shlibs @@ -0,0 +1 @@ +libxfce4panel 1 xfce4-panel (>= 4.4.2) --- xfce4-panel-4.4.2.orig/debian/watch +++ xfce4-panel-4.4.2/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://www.xfce.org/archive/xfce-(.*)/src/ \ + xfce4-panel-(.*)\.tar\.bz2 --- xfce4-panel-4.4.2.orig/debian/xfce4-panel.postinst +++ xfce4-panel-4.4.2/debian/xfce4-panel.postinst @@ -0,0 +1,10 @@ +#!/bin/sh -e + +if [ "$1" = "configure" ]; then + # Run ldconfig to update shared library system + ldconfig +fi + +#DEBHELPER# + +exit 0 --- xfce4-panel-4.4.2.orig/debian/control +++ xfce4-panel-4.4.2/debian/control @@ -0,0 +1,43 @@ +Source: xfce4-panel +Section: x11 +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Debian Xfce Maintainers +Uploaders: Emanuele Rocca , Simon Huggins , Yves-Alexis Perez +Build-Depends: debhelper (>> 5.0.0), libgtk2.0-dev (>= 2.10.6), bison, libxft-dev, libxml2-dev, xfce4-mcs-manager-dev (>= 4.4.1), chrpath, quilt +Standards-Version: 3.7.3 +Homepage: http://www.xfce.org/ +Vcs-Svn: svn://svn.debian.org/pkg-xfce/desktop/trunk/xfce4-panel/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-xfce/desktop/trunk/xfce4-panel/ + +Package: xfce4-panel +Architecture: any +Depends: ${shlibs:Depends}, libexo-0.3-0 (>= 0.3.2), exo-utils +Replaces: xfce4-utils (<< 4.3.90.1-1), xfce4-mcs-plugins (= 4.3.90.2-1) +Conflicts: xfce4-mcs-manager (<< 4.4.2-3) +Description: The Xfce4 desktop environment panel + This is the panel provided by the Xfce4 desktop project. + If you want a multi-functional panel that can even handle + plugins and the like, xfce4-panel might be worth a try. + +Package: xfce4-panel-dev +Section: devel +Architecture: any +Depends: xfce4-panel (= ${binary:Version}), libxml2-dev, xfce4-mcs-manager-dev (>= 4.4.1) +Replaces: xfce4-dev (<= 4.0.0.final-1) +Conflicts: xfce4-dev (<= 4.0.0.final-1) +Description: The Xfce4 panel development files + In this package, you can find the development files + distributed with the Xfce4 panel, the main panel of + Xfce4 desktop environment. The files in this package + are mainly going to be of interest for you if you + intend to code applications which use some of the + Xfce4 C panel functions. + +Package: xfce4-panel-dbg +Architecture: any +Priority: extra +Depends: ${shlibs:Depends}, xfce4-panel (= ${binary:Version}) +Description: debugging informations for xfce4-panel + This package contains debugging symbols for xfce4-panel, the panel provided by + the Xfce4 desktop project. --- xfce4-panel-4.4.2.orig/debian/NEWS +++ xfce4-panel-4.4.2/debian/NEWS @@ -0,0 +1,12 @@ +xfce4-panel (4.3.90.1-3) unstable; urgency=low + + This is the 4.4beta1 release of xfce panel. + + This is a major upgrade and as such you will lose your 4.2 panel config + There is no sane way for us to avoid this. Also as this is a beta please + consider reporting any bugs to upstream first or to both the BTS and + upstream's bugzilla at http://bugzilla.xfce.org/ + + Also #xfce and #debian-xfce on irc.freenode.net can be useful resources. + + -- Yves-Alexis Perez Mon, 05 Jun 2006 19:51:37 +0200 --- xfce4-panel-4.4.2.orig/debian/lintian +++ xfce4-panel-4.4.2/debian/lintian @@ -0,0 +1,2 @@ +#Panel includes its library +xfce4-panel: package-name-doesnt-match-sonames libxfce4panel1 --- xfce4-panel-4.4.2.orig/debian/compat +++ xfce4-panel-4.4.2/debian/compat @@ -0,0 +1 @@ +5 --- xfce4-panel-4.4.2.orig/debian/xfce4-panel-dev.install +++ xfce4-panel-4.4.2/debian/xfce4-panel-dev.install @@ -0,0 +1,4 @@ +usr/include/ +usr/lib/pkgconfig/ +usr/lib/lib*.so +usr/share/gtk-doc/ --- xfce4-panel-4.4.2.orig/debian/rules +++ xfce4-panel-4.4.2/debian/rules @@ -0,0 +1,106 @@ +#!/usr/bin/make -f +include /usr/share/quilt/quilt.make + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: patch configure + + dh_testdir + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --sysconfdir=/etc --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --enable-final --libexecdir=\$${prefix}/lib + +build: build-stamp +build-stamp: config.status + + dh_testdir + $(MAKE) + touch build-stamp + +clean: unpatch + + dh_testdir + dh_testroot + rm -f build-stamp + + [ ! -f Makefile ] || $(MAKE) distclean + +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + + dh_clean + +install: build + + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + + install -d $(CURDIR)/debian/tmp/usr/share/man/man1 + install $(CURDIR)/debian/xfce4-panel.1 $(CURDIR)/debian/tmp/usr/share/man/man1 + + perl -i -pe 's/Exec=Terminal/Exec=exo-open --launch TerminalEmulator/' $(CURDIR)/debian/tmp/etc/xdg/xfce4/panel/launcher* + rm -f $(CURDIR)/debian/tmp/etc/xdg/xfce4/panel/launcher-8.rc + sed -i '//d' $(CURDIR)/debian/tmp/etc/xdg/xfce4/panel/panels.xml + + rm -f $(CURDIR)/debian/tmp/usr/lib/xfce4/panel-plugins/*.la + rm -f $(CURDIR)/debian/tmp/usr/lib/xfce4/panel-plugins/*.a + rm -f $(CURDIR)/debian/tmp/usr/lib/xfce4/mcs-plugins/*.la + rm -f $(CURDIR)/debian/tmp/usr/lib/xfce4/mcs-plugins/*.a + rm -f $(CURDIR)/debian/tmp/usr/lib/libxfce4panel.la + + install -D -p -o root -g root -m 644 $(CURDIR)/debian/lintian \ + $(CURDIR)/debian/tmp/usr/share/lintian/overrides/xfce4-panel + + #we don't need no empty files in our packages ! + rm -f $(CURDIR)/debian/tmp/usr/bin/xftaskbar4 + rm -f $(CURDIR)/debian/tmp/usr/bin/xfce4-iconbox + + for desktop in `pwd`/debian/tmp/usr/share/applications/xfce*.desktop; do \ + echo "NoDisplay=true" >> $$desktop; \ + done + + chrpath -d -k $(CURDIR)/debian/tmp/usr/bin/xfce4-panel \ + $(CURDIR)/debian/tmp/usr/bin/xfce4-popup-windowlist \ + $(CURDIR)/debian/tmp/usr/lib/xfce4/*/* \ + $(CURDIR)/debian/tmp/usr/lib/libxfce4panel.so.*1 + +binary-indep: build install +binary-arch: build install + + dh_testdir + dh_testroot + + dh_install --list-missing --sourcedir=debian/tmp + + dh_installchangelogs ChangeLog + dh_installdocs NEWS README README.Kiosk README.Plugins + + dh_strip --dbg-package=xfce4-panel-dbg + dh_compress + + dh_fixperms + dh_installdeb + + dh_shlibdeps + dh_gencontrol + + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- xfce4-panel-4.4.2.orig/debian/xfce4-panel.1 +++ xfce4-panel-4.4.2/debian/xfce4-panel.1 @@ -0,0 +1,18 @@ +.\" Copyright (C) 2004 Simon Huggins +.TH XFCE4-PANEL "1" "February 2004" "xfce4-panel 0.1" "User Commands" +.SH NAME +xfce4-panel \- XFce 4 Panel +.SH SYNOPSIS +.B xfce4-panel +.SH DESCRIPTION +.PP +Starts the XFce 4 panel. +.SH SEE ALSO +Upstream documentation in /usr/share/xfce4/doc/C/xfce4-panel.html +.SH "REPORTING BUGS" +Report bugs to +.SH COPYRIGHT +Copyright \(co 2004 Simon Huggins +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. --- xfce4-panel-4.4.2.orig/debian/changelog +++ xfce4-panel-4.4.2/debian/changelog @@ -0,0 +1,585 @@ +xfce4-panel (4.4.2-6ubuntu2) intrepid; urgency=low + + * Translations: cherry-pick from upstream 4.4 svn branch: + - Sinhala, Urdu, Indonesian translations added + - Spanish, Albanian, Greek, Latvian, Slovak translations updated. + * New patch debian/patches/99_update_translations.patch created and enabled + for this. + + -- Lionel Le Folgoc Mon, 20 Oct 2008 18:38:00 +0200 + +xfce4-panel (4.4.2-6ubuntu1) intrepid; urgency=low + + * Merge from Debian unstable, remaining Ubuntu changes: + - debian/control: adhere to DebianMaintainerField + - debian/xfce4-panel.1: update bug reporting (LP instead of Debian BTS) + - debian/xfce4-panel.install: do not ship etc/xdg/xfce4/panel/*, it's in + xubuntu-default-settings. + * debian/patches: 00_fix-segfault-with-dnd.patch dropped, use + 01_fix-dnd-file-panel from the debian package instead. + * debian/rules: keep the .desktop installed, but add "NoDisplay=true" to hide + them by default. + + -- Lionel Le Folgoc Fri, 23 May 2008 20:58:09 +0200 + +xfce4-panel (4.4.2-6) unstable; urgency=low + + * switch to triggers: + - debian/postinst: remove xfce-mcs-manager refresh. + - debian/prerm dropped. + - debian/control: conflicts against non-triggers-enable xfce4-mcs-manager. + * debian/control: remove useless Conflicts/Replaces against Sarge stuff. + + -- Yves-Alexis Perez Mon, 19 May 2008 08:08:22 +0200 + +xfce4-panel (4.4.2-5) unstable; urgency=low + + * debian/patches: + - 01_fix-dnd-file-panel added, fix a crash when drag & droping a file over + the panel. (Xfce #3815, r26669). + - 02_fix-screen-config-dialog added, fix multiscreen support for + configuration dialogs. (Xfce r26937). closes: #481086 + * debian/rules: use quilt make rule. + * debian/control: remove Martin Loschwitz from Uploaders:. Thanks for the + work! + + -- Yves-Alexis Perez Thu, 15 May 2008 08:48:41 +0200 + +xfce4-panel (4.4.2-4) unstable; urgency=low + + * debian/rules: + - don't edit mousepad launcher… + - and remove it. + - remove editor launcher item from panel config. closes: #426164 + - use $(CURDIR) instead of `pwd`. + + -- Yves-Alexis Perez Sun, 06 Apr 2008 02:24:09 +0200 + +xfce4-panel (4.4.2-3ubuntu3) hardy; urgency=low + + * Upload to Ubuntu, thanks Jérôme Guelfucci, Verstraete Linard and + Jim Campbell for testing. + + -- Lionel Le Folgoc Thu, 13 Mar 2008 19:17:02 +0100 + +xfce4-panel (4.4.2-3ubuntu3~ppa1) hardy; urgency=low + + * debian/patches: + + 00_fix-segfault-with-dnd.patch: prevent the panel from disappearing when + dragging files onto it, and fix some crashes. (LP: #185448, Xfce #3815) + + series: refreshed. + + -- Lionel Le Folgoc Mon, 10 Mar 2008 22:36:36 +0100 + +xfce4-panel (4.4.2-3ubuntu2) hardy; urgency=low + + * debian/xfce4-panel.install: really drop etc/xdg/xfce4/panel/* (LP: #198388). + + -- Lionel Le Folgoc Tue, 04 Mar 2008 19:12:24 +0100 + +xfce4-panel (4.4.2-3ubuntu1) hardy; urgency=low + + * Merge with debian unstable. Remaining changes: + - debian/control: bump xfce4-mcs-manager-dev to (>= 4.4.2) + - debian/xfce4-panel.1: update bug reporting (LP instead of Debian BTS) + - Adhere to DebianMaintainerField + * debian/control: don't depend on exo-utils + * debian/xfce4-panel.install: don't install the mcs settings desktop file. + LP: #197277 + + -- Gauvain Pocentek Sun, 2 Mar 2008 20:08:33 +0100 + +xfce4-panel (4.4.2-3) unstable; urgency=low + + * debian/compat: bump debhelper compatibility to 5. + * debian/control: + - bump build-dep on debhelper accordingly. + - update standards version to 3.7.3. + - update my email address. + - add a -dbg package + * debian/rules: install debugging informations into -dbg package. + * debian/copyright: use © sign. + + -- Yves-Alexis Perez Sun, 02 Mar 2008 01:01:52 +0100 + +xfce4-panel (4.4.2-2) unstable; urgency=low + + * Add dependency on new exo-utils for exo-open + + -- Simon Huggins Mon, 28 Jan 2008 11:31:25 +0000 + +xfce4-panel (4.4.2-1ubuntu1) hardy; urgency=low + + * Merge with Debian Unstable, Ubuntu changes: + - use our xfce.mk class + - debian/control: remove quilt and chrpath build-dependencies and add cdbs + - Adhere to DebianMaintainerField + - debian/xfce4-panel.1: update bug reporting (LP instead of Debian BTS) + - debian/compat: bump to 5 + - use our Vcs-* fields + - debian/xfce4-panel.install: drop usr/share/man to fix FTBFS. + * debian/control: bump xfce4-mcs-manager-dev to (>= 4.4.2). + + -- Lionel Le Folgoc Wed, 05 Dec 2007 23:36:22 +0100 + +xfce4-panel (4.4.2-1) unstable; urgency=low + + [ Simon Huggins ] + * debian/control: Move fake Homepage field to a real one now dpkg + supports it. + + [ Yves-Alexis Perez ] + * New upstream release. + * debian/patches: + - removed 02_fix-segfault-gtk2.11.patch, included upstream. + + [ Simon Huggins ] + * Add Vcs-* headers to debian/control + + -- Simon Huggins Tue, 27 Nov 2007 16:39:19 +0000 + +xfce4-panel (4.4.1-2ubuntu1) hardy; urgency=low + + * Merge with Debian Unstable, Ubuntu changes: + - use our xfce.mk class + - debian/control: remove quilt and chrpath build-dependencies and add cdbs + - Adhere to DebianMaintainerField + - debian/patches/series: dropped, we use simple-patchsys + - debian/patches/01_lower-margins-in-launchers.patch: dropped + - debian/xfce4-panel.1: update bug reporting (LP instead of Debian BTS) + - debian/compat: bump to 5 + - Homepage, XS-Vcs-Bzr & XS-Vcs-Browser fields added + - debian/xfce4-panel.install: drop usr/share/man to fix FTBFS. + * Drop uneeded delta with Debian: rename debian/patches/01_fix-segfault-with-2nd-panel.patch + to debian/patches/02_fix-segfault-gtk2.11.patch. + * debian/control: use Vcs-* instead of XS-Vcs-*. + + -- Lionel Le Folgoc Sat, 24 Nov 2007 21:18:05 +0100 + +xfce4-panel (4.4.1-2) unstable; urgency=low + + [ Simon Huggins ] + * Use ${binary:Version} so we are binNMU safe. + * debian/xfce4-panel.prerm: Use kill -s to keep Hurd and lintian happy at + the same time. + + [ Yves-Alexis Perez ] + * debian/xfce4-panel.1: update bug reporting in manpage. + * debian/xfce4-panel.postinst: use posix kill -s closes: #374618 + * debian/patches: added 02_fix-segfault-gtk2.11.patch, fix segfault when + removing a panel. closes: #446536 + + [ Emanuele Rocca ] + * debian/rules: do not ignore make errors in the clean target. + + -- Yves-Alexis Perez Mon, 15 Oct 2007 22:54:48 +0200 + +xfce4-panel (4.4.1-1ubuntu4) hardy; urgency=low + + * debian/patches: + - 01_lower-margins-in-launchers.patch.disabled: dropped, was disabled anyway + - 02_fix-segfault-with-2nd-panel.patch renamed to 01_fix-segfault-with-2nd-panel.patch. + * debian/control: + - b-ds updated & cleaned + - Homepage, XS-Vcs-Bzr & XS-Vcs-Browser fields added + - use ${binary:Version} instead of ${Source-Version} to make lintian happy. + * debian/compat: bump to 5. + * debian/NEWS: dropped. + * debian/xfce4-panel.1: update bug reporting (LP instead of a mail address). + * Clean the diff.gz from config.{sub,guess}, cdbs takes care of this anyway. + + -- Lionel Le Folgoc Tue, 30 Oct 2007 12:11:49 +0100 + +xfce4-panel (4.4.1-1ubuntu3) gutsy; urgency=low + + * debian/patches/02_fix-segfault-with-2nd-panel.patch: fixes segfaults with + gtk 2.11 when removing the second panel. (LP: #128491 and Xfce #3496) + + -- Lionel Le Folgoc Wed, 05 Sep 2007 14:39:24 +0200 + +xfce4-panel (4.4.1-1ubuntu2) gutsy; urgency=low + + * Disable patches/01_lower-margins-in-launchers.patch as it breaks the panel + display. (LP: #118750) + + -- Lionel Le Folgoc Tue, 05 Jun 2007 12:57:41 +0200 + +xfce4-panel (4.4.1-1ubuntu1) gutsy; urgency=low + + * Merge with Debian Unstable, Ubuntu changes: + - use our xfce.mk class + - debian/control: remove quilt and chrpath build-dependencies and add cdbs. + * debian/control: Adhere to DebianMaintainerField. + + -- Lionel Le Folgoc Sat, 05 May 2007 01:15:55 +0200 + +xfce4-panel (4.4.1-1) unstable; urgency=low + + * New upstream release. + * debian/patch: added patch to reduce margin size of launchers. + * debian/control: added versionned build-dep against gtk 2.10. + * debian/copyright: updated copyright holders. + + -- Yves-Alexis Perez Sun, 15 Apr 2007 15:28:17 +0100 + +xfce4-panel (4.4.0-2) experimental; urgency=low + + * debian/rules: remove /usr/lib/libxfce4panel.la from the package. + * debian/xfce4-panel.install: ship xfce4-panel-manager.desktop in + /usr/share/applications. + + -- Yves-Alexis Perez Thu, 25 Jan 2007 00:50:58 +0100 + +xfce4-panel (4.4.0-1) experimental; urgency=low + + * New upstream release. + * debian/control: updated build-deps against Xfce 4.4. + + -- Yves-Alexis Perez Thu, 25 Jan 2007 00:06:03 +0100 + +xfce4-panel (4.4.0-0ubuntu1) feisty; urgency=low + + * New upstream release + * Tighten build dependecies versions + + -- Gauvain Pocentek Tue, 23 Jan 2007 10:43:49 +0100 + +xfce4-panel (4.3.99.2-1) unstable; urgency=low + + * New upstream release. + * debian/control: updated build-deps against Xfce 4.4RC2 (4.3.99.2). + + -- Yves-Alexis Perez Thu, 16 Nov 2006 15:18:46 +0100 + +xfce4-panel (4.3.99.2-0ubuntu1) feisty; urgency=low + + * New upstream release (4.4RC2) + + -- Gauvain Pocentek Thu, 9 Nov 2006 16:33:08 +0100 + +xfce4-panel (4.3.99.1-1) unstable; urgency=low + + * New upstream release. + * debian/control: updated build-dep against Xfce 4.4RC1 (4.3.99.1). + + -- Yves-Alexis Perez Sat, 23 Sep 2006 13:40:01 +0100 + +xfce4-panel (4.3.99.1-0ubuntu1) edgy; urgency=low + + * New upstream release (4.4RC1) + * Bumped library and policy versions + + -- Jani Monoses Tue, 12 Sep 2006 15:36:53 +0300 + +xfce4-panel (4.3.90.2svn+r22593-0ubuntu1) edgy; urgency=low + + * Upstream svn snapshot, fix kiosk mode, fix building against + libxfc4panel when using -Wl,--as-needed + + -- Jani Monoses Mon, 31 Jul 2006 17:04:51 +0300 + +xfce4-panel (4.3.90.2-3) unstable; urgency=low + + * Bump shlibs file too. + + -- Simon Huggins Wed, 26 Jul 2006 15:47:42 +0100 + +xfce4-panel (4.3.90.2-2) unstable; urgency=low + + * xfce4-panel should continue shipping xfce-filemanager.png as it has done + since the beginning. + * Add Replaces: on the bogus xfce4-mcs-plugins version. + + -- Yves-Alexis Perez Tue, 25 Jul 2006 07:49:17 +0200 + +xfce4-panel (4.3.90.2-1) unstable; urgency=low + + (Yves-Alexis Perez) + * New upstream release. + * debian/NEWS: fixed typo. + * debian/postinst: fixed install on hurd by not using pkill. Closes: #374618 + * debian/control: updated standard versions to 3.7.2. + (Simon Huggins) + * Add rpath fixes. + + -- Yves-Alexis Perez Fri, 21 Jul 2006 15:45:54 +0200 + +xfce4-panel (4.3.90.2-0ubuntu1) edgy; urgency=low + + * New upstream release, Xfce 4.4 beta2 + + -- Jani Monoses Tue, 11 Jul 2006 17:16:19 +0300 + +xfce4-panel (4.3.90.1-3) unstable; urgency=low + + * (Simon Huggins) + * Conflict/Replace -trigger-launcher too. + + * (Yves-Alexis Perez) + * debian/NEWS: warn users they will lose their 4.2 panel config. + + -- Yves-Alexis Perez Sat, 17 Jun 2006 12:37:27 +0100 + +xfce4-panel (4.3.90.1svn+r21633-0ubuntu2) dapper; urgency=low + + * Add office category to the launcher icon selector to be in + sync with the icon naming spec (patch from upstream svn) + + -- Jani Monoses Mon, 29 May 2006 21:14:56 +0300 + +xfce4-panel (4.3.90.1svn+r21633-0ubuntu1) dapper; urgency=low + + * Upstream svn snapshot (a few bugfixes, translation updates) + + -- Jani Monoses Fri, 12 May 2006 15:02:00 +0300 + +xfce4-panel (4.3.90.1svn+r21136-0ubuntu2) dapper; urgency=low + + * Do not ship panel layouts, will be provided by xubuntu-default-settings + + -- Jani Monoses Sun, 23 Apr 2006 20:33:36 +0300 + +xfce4-panel (4.3.90.1svn+r21136-0ubuntu1) dapper; urgency=low + + * Upstream svn snapshot (4.4 beta1) + * Use upstream panel layout, now that they are shipping such settings + + -- Jani Monoses Fri, 21 Apr 2006 21:45:40 +0300 + +xfce4-panel (4.3.90.1-2) unstable; urgency=low + + * (Simon Huggins) + * Add dependency on libexo-0.3-0 for exo-open which we use in our default + panel config. + * Ship the README.Plugins + * (Yves-Alexis Perez) + * Use the correct libexec dir + + -- Simon Huggins Sat, 13 May 2006 22:19:56 +0200 + +xfce4-panel (4.3.90.1-1) unstable; urgency=low + + * New Upstream Release + + -- Yves-Alexis Perez Wed, 03 May 2006 18:35:05 +0100 + +xfce4-panel (4.3.30svn+r20608-0ubuntu1) dapper; urgency=low + + * Upstream svn snapshot, fixes LP bug #35857 + * Switch to using xfce CDBS class + * Generate POT file for langpack support + + -- Jani Monoses Tue, 28 Mar 2006 09:23:52 +0300 + +xfce4-panel (4.3.30svn+r20393-0ubuntu1) dapper; urgency=low + + * Upstream svn snapshot with bugfixes and fixed translation + installation + * Move html docs to the xfce4-panel-dev package (Daniele Favara) + * Bump package version to reflect upstream version + + -- Jani Monoses Tue, 14 Mar 2006 08:27:21 +0200 + +xfce4-panel (4.3.0svn+r20145-0ubuntu2) dapper; urgency=low + + * Add gettext domain to panel plugin .desktop files + + -- Jani Monoses Fri, 3 Mar 2006 10:43:10 +0200 + +xfce4-panel (4.3.0svn+r20145-0ubuntu1) dapper; urgency=low + + * Upstream svn snapshot + * Switch to CDBS packaging + * Install a friendlier two panel setup by default + + -- Jani Monoses Thu, 2 Mar 2006 07:45:12 +0200 + +xfce4-panel (4.3.0svn+r19871-0ubuntu4) dapper; urgency=low + + * Conflict/Replace older versions of xfce4-utils and several plugins + which are in the new panel. + + -- Jani Monoses Sat, 18 Feb 2006 09:54:58 +0200 + +xfce4-panel (4.3.0svn+r19871-0ubuntu3) dapper; urgency=low + + * Conflict/Replace xfce4-iconbox and xfce4-systray as they are + now incorporated in the new panel. + + -- Jani Monoses Thu, 16 Feb 2006 17:01:22 +0200 + +xfce4-panel (4.3.0svn+r19871-0ubuntu2) dapper; urgency=low + + * Remove usr/share/locale dir from .install file to prevent FTBFS + + -- Jani Monoses Thu, 16 Feb 2006 00:14:19 +0200 + +xfce4-panel (4.3.0svn+r19871-0ubuntu1) dapper; urgency=low + + * Upstream svn snapshot + * Bump all depends to 4.3 + + -- Jani Monoses Wed, 15 Feb 2006 16:27:07 +0200 + +xfce4-panel (4.3.0svn+r19850-0ubuntu1) dapper; urgency=low + + * Upstream svn snapshot + * UVF exception granted + + -- Jani Monoses Wed, 15 Feb 2006 12:52:03 +0200 + +xfce4-panel (4.2.3-1) unstable; urgency=low + + * New Upstream Release + * Send xfce-mcs-manager a SIGUSR1 so it notices the plugin. + + -- Yves-Alexis Perez Sun, 06 Nov 2005 22:01:12 +0100 + +xfce4-panel (4.2.2-1) unstable; urgency=low + + * New Upstream Release + * Remove Build-Depends on libstartup-notification0-dev as this should be + satisfied via libxfce4gui-dev now + * Remove Depends on debianutils, it is Essential + * Change suite to unstable + + -- Simon Huggins Sat, 18 Jun 2005 09:46:08 +0100 + +xfce4-panel (4.2.1.1-1) experimental; urgency=low + + * ML: New Upstream Release (Xfce 4.2.1.1) + * ML: Upload to experimental to prevents problems with NEW packages + * ML: debian/control: Added Maintainer/Uploaders fields + + -- Martin Loschwitz Sat, 19 Mar 2005 13:02:00 +0100 + +xfce4-panel (4.2.0-2) experimental; urgency=low + + * Add --enable-final to configure + * Add a Homepage: to the description + * Ship the README.Kiosk as well + + -- Simon Huggins Sun, 16 Jan 2005 15:49:21 +0000 + +xfce4-panel (4.2.0-1) experimental; urgency=low + + * New Upstream Release + * Conflict against all versions of xfce4-themes since upstream no longer + ship this. + + -- Simon Huggins Sat, 15 Jan 2005 12:55:32 +0000 + +xfce4-panel (4.1.99.1-1) experimental; urgency=low + + * ML: New Upstream Release (4.1.99.1 alias XFce4 4.2 RC1) + + -- Martin Loschwitz Fri, 19 Nov 2004 18:04:00 +0100 + +xfce4-panel (4.0.6-1) unstable; urgency=high + + * urgency high to avoid previous buildd mess; last upload stage building dev + packages required before we can upload the rest (see + http://wiki.earth.li/XfceDebian) + * New upstream release + - includes fix for non existant xfce-settings.xml closes: #254467 + * Update .no translation still not picked up upstream yet + * Change mozilla to sensible-browser (and depend on debianutils which + provides this) closes: #221835 + + -- Simon Huggins Mon, 19 Jul 2004 17:40:59 +0100 + +xfce4-panel (4.0.5-4) unstable; urgency=low + + * And extracting po/no.gmo so it builds, I also overwrote my lovingly + updated libtool stuff. + Update libtool once again. closes: #252927 + + -- Simon Huggins Tue, 08 Jun 2004 10:44:21 +0100 + +xfce4-panel (4.0.5-3) unstable; urgency=low + + * Except obviously whilst I don't mind installing the -dev package with the + old one around I do want to build against the new libxfce4gui *sigh* + Update the Build-Depends libxfce4gui dependency to the new version. + + -- Simon Huggins Fri, 28 May 2004 12:59:57 +0100 + +xfce4-panel (4.0.5-2) unstable; urgency=low + + * Change the depends in the -dev pacage to be less strict >= instead of = so + the new libxfcegui4-dev doesn't cause problems. + + -- Simon Huggins Wed, 26 May 2004 09:29:27 +0100 + +xfce4-panel (4.0.5-1) unstable; urgency=high + + * urgency high to avoid previous buildd mess; last upload stage building dev + packages required before we can upload the rest (see + http://wiki.earth.li/XfceDebian) + * New upstream release + * Update upstream's libtool + * Fix path to docs in manpage + * Add libstartup-notification support to the panel + * Typo in debian/control "wort" -> "worth" + * Update .no translation not picked up upstream yet closes: #240275 + + -- Simon Huggins Sun, 25 Apr 2004 13:13:55 +0100 + +xfce4-panel (4.0.3-3) unstable; urgency=low + + * Fix the section in the control file closes: #236669 + * Update libtool + * Just adding Daniel wasn't enough. Add self to Uploaders so katie doesn't + think this is an NMU again. + + -- Simon Huggins Tue, 09 Mar 2004 09:55:04 +0000 + +xfce4-panel (4.0.3-2) unstable; urgency=low + * Add libxfcegui4-dev to the Depends closes: #232803 + + -- Simon Huggins Sun, 07 Mar 2004 11:49:24 +0000 + +xfce4-panel (4.0.3-1) unstable; urgency=low + + * New upstream release + * Add Daniel Silverstone to Uploaders as approved by + madkiss + * Add xfce4-panel manpage to point at upstream documentation + * Remove .la and .a files as these are only for the plugins + * Thanks to Daniel for checking and uploading these packages + + -- Simon Huggins Wed, 25 Feb 2004 10:31:08 +0000 + +xfce4-panel (4.0.2-2.1) unstable; urgency=low + + * NMU + * Fix aclocal, add Depends: libxml2-dev to xfce4-panel-dev. Closes: #227606 + + -- LaMont Jones Tue, 17 Feb 2004 11:33:56 -0700 + +xfce4-panel (4.0.2-2) unstable; urgency=low + + * Adding Build-Dependency for libxfce4gui-dev + + -- Martin Loschwitz Tue, 06 Jan 2003 12:01:00 +0100 + +xfce4-panel (4.0.2-1) unstable; urgency=low + + * Acknowledging NMU (Closes: #215589) + * New upstream release + + -- Martin Loschwitz Fri, 26 Dec 2003 16:19:00 +0100 + +xfce4-panel (4.0.0.final-1.1) unstable; urgency=low + + * NMU + * Add xfce4-mcs-manager-dev to Build-Depends (Closes: #215589) + * libxft-dev now Provides: libxft2-dev, so Build-Depend on that + + -- Guido Guenther Thu, 20 Nov 2003 11:18:00 +0100 + +xfce4-panel (4.0.0.final-1) unstable; urgency=low + + * Initial Release. + + -- Martin Loschwitz Tue, 29 Sep 2003 17:09:09 +0200 --- xfce4-panel-4.4.2.orig/debian/xfce4-panel.install +++ xfce4-panel-4.4.2/debian/xfce4-panel.install @@ -0,0 +1,9 @@ +usr/bin/ +usr/lib/lib*.so.* +usr/lib/xfce4/ +usr/share/applications/ +usr/share/icons/hicolor/ +usr/share/lintian +usr/share/locale/ +usr/share/xfce4/ +usr/share/man/ --- xfce4-panel-4.4.2.orig/debian/copyright +++ xfce4-panel-4.4.2/debian/copyright @@ -0,0 +1,43 @@ +This package was debianized by Martin Loschwitz on +Sat, 19 Jul 2003 20:52:09 +0200. + +You can fetch xfce4-panel from the official Xfce4 website which is +http://www.xfce.org/ + +Upstream author are: +Jasper Huijsmans +Nick Schermer +clock plugin is written by Jasper Huijsmans and Jannis Pohlmann + +Copyrights: +xfce4-panel is © 2002-2007 The Xfce development team +dz and gl traduction are © 2006 Canonical Ltd, and Rosetta Contributors +windowlist plugin is: + Copyright © 2003 Andre Lerche + Copyright © 2003 Benedikt Meurer + Copyright © 2006 Jani Monoses + Copyright © 2006 Jasper Huijsmans + Copyright © 2006 Nick Schermer +action buttons,iconbox, launcher, pager, separator, systray, tasklist plugins + are Copyright © 2005 Jasper Huijsmans +showdesktop plugin is: + Copyright © 2005 Jasper Huijsmans + Copyright © 2006 Jani Monoses + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. --- xfce4-panel-4.4.2.orig/debian/patches/99_update_translations.patch +++ xfce4-panel-4.4.2/debian/patches/99_update_translations.patch @@ -0,0 +1,4184 @@ +diff -Naur xfce4-panel-4.4.2/po/ChangeLog xfce4-panel-4.4.2/po.new/ChangeLog +--- xfce4-panel-4.4.2/po/ChangeLog 2007-11-17 20:31:00.000000000 +0100 ++++ xfce4-panel-4.4.2/po.new/ChangeLog 2008-10-19 23:11:07.000000000 +0200 +@@ -1,15 +1,52 @@ ++2008-06-22 Mike Massonnet ++ ++ * id.po, LINGUAS: Add Indonesian translation (Andhika Padmawa) ++ ++2008-05-17 Mike Massonnet ++ ++ * sk.po: Update Slovak translation (Stefan Miklosovic) ++ ++2008-04-12 Mike Massonnet ++ ++ * lv.po: Update Latvian translation (Rihards Prieditis ) ++ ++2008-02-22 Mike Massonnet ++ ++ * LINGUAS, ur.po: Merge Urdu translation from trunk (r26296) ++ ++2008-02-19 Stavros Giannouris ++ ++ * el.po: Greek translation update ++ ++2008-02-14 Stephan Arts ++ ++ * si.po: Add Sinhala translations by Rashan Anushka ++ ++ ++2007-12-23 Jean-François Wauthy ++ ++ * sq.po: Updated Albanian translations by Besnik Bleta ++ ++ ++2007-12-02 Maximilian Schleiss ++ ++ * es.po: Spanish translation update ++ by Cristian Othón Martínez Vera ++ + 2007-11-16 Jean-François Wauthy + +- * ro.po: Updated Romanian translations by Mişu Moldovan +- ++ * ro.po: Updated Romanian translations ++ by Mişu Moldovan + + 2007-11-15 Mike Massonnet + +- * pt_PT.po: Update translations by Nuno Miguel ++ * pt_PT.po: Update translations ++ by Nuno Miguel + + 2007-11-11 Mike Massonnet + +- * lv.po: Add translations by RPrieditis ++ * lv.po: Add translations ++ by RPrieditis + + 2007-11-03 Maximilian Schleiss + +@@ -238,7 +275,7 @@ + * de.po: Updated German translations + * ka.po: Add Georgian translations + +-2006-08-26 Stavros Giannouris ++2006-08-26 Stavros Giannouris + + * el.po: Updated Greek translations + +@@ -275,7 +312,7 @@ + * eo.po: Updated Esperanto translations by + Antono Vasiljev + +-2006-08-04 Stavros Giannouris ++2006-08-04 Stavros Giannouris + + * el.po: Greek translation update. + +@@ -325,7 +362,7 @@ + + * ja.po: Updated Japanese translations. + +-2006-05-20 Stavros Giannouris ++2006-05-20 Stavros Giannouris + + * el.po: Greek translation update. + +@@ -371,7 +408,7 @@ + + * pt_BR.po: Updated Brazilian Portuguese translations. + +-2006-05-06 Stavros Giannouris ++2006-05-06 Stavros Giannouris + + * el.po: Updated Greek translation. + +@@ -453,7 +490,7 @@ + + * eu.po: Basque translation update. + +-2006-04-24 Stavros Giannouris ++2006-04-24 Stavros Giannouris + + * el.po: Greek translation update + +@@ -481,7 +518,7 @@ + + * he.po: Hebrew translations update. + +-2006-04-17 Stavros Giannouris ++2006-04-17 Stavros Giannouris + + * el.po: Greek translations update. + +@@ -517,7 +554,7 @@ + . + * xfce4-panel.pot, *.po: Updated. + +-2006-04-01 Stavros Giannouris ++2006-04-01 Stavros Giannouris + + * el.po: Greek translations update & polish by Stathis Kamperis + +@@ -602,7 +639,7 @@ + + * *.po: Update API docs and translations + +-2006-02-25 Stavros Giannouris ++2006-02-25 Stavros Giannouris + + * el.po: Updated Greek translation + +@@ -661,7 +698,7 @@ + + * he.po: Update Hebrew translations. + +-2006-02-05 Stavros Giannouris ++2006-02-05 Stavros Giannouris + + * el.po: Updated Greek translations + +@@ -721,7 +758,7 @@ + + * pt_BR.po: Updated pt_BR translations for xfce4-panel. + +-2006-01-05 Stavros Giannouris ++2006-01-05 Stavros Giannouris + + * el.po: Updated Greek translation + +@@ -737,7 +774,7 @@ + + * xfce4-panel.pot, *.po: update po files. + +-2005-12-11 Stavros Giannouris ++2005-12-11 Stavros Giannouris + + * el.po: Updated Greek translations. + +@@ -753,7 +790,7 @@ + + * xfce4-panel.pot, *.po: Updated. + +-2005-11-21 Stavros Giannouris ++2005-11-21 Stavros Giannouris + + * el.po: Update Greek Panel translations. + +@@ -840,7 +877,7 @@ + + * zh_TW.po: Update zh_TW translations + +-2005-10-09 Stavros Giannouris ++2005-10-09 Stavros Giannouris + + * el.po: Minor panel translation update + +@@ -854,7 +891,7 @@ + * de.po: Updated German translations by Fabian Nowak + . + +-2005-10-06 Stavros Giannouris ++2005-10-06 Stavros Giannouris + + * el.po: Minor updates & polishing for the Greek translations + +@@ -862,7 +899,7 @@ + + * zh_TW.po: Update xfce4-panel zh_TW translations + +-2005-09-30 Stavros Giannouris ++2005-09-30 Stavros Giannouris + + * el.po: Updated EL translations for xfce4-panel/trunk + +diff -Naur xfce4-panel-4.4.2/po/el.po xfce4-panel-4.4.2/po.new/el.po +--- xfce4-panel-4.4.2/po/el.po 2007-11-17 20:31:00.000000000 +0100 ++++ xfce4-panel-4.4.2/po.new/el.po 2008-10-19 23:11:07.000000000 +0200 +@@ -1,7 +1,7 @@ + # Greek translation of xfce4-panel +-# Copyright (C) 2002-2006 The Xfce development team. ++# Copyright (C) 2002-2006, 2008 The Xfce development team. + # This file is distributed under the same license as the xfce4-panel package. +-# Stavros Giannouris , 2005-2006. ++# Stavros Giannouris , 2005-2006, 2008. + # Stathis Kamperis , 2006. + # + msgid "" +@@ -9,8 +9,8 @@ + "Project-Id-Version: xfce4-panel 4.4.0\n" + "Report-Msgid-Bugs-To: \n" + "POT-Creation-Date: 2007-03-27 15:28+0200\n" +-"PO-Revision-Date: 2006-08-24 18:15+0200\n" +-"Last-Translator: Stavros Giannouris \n" ++"PO-Revision-Date: 2008-02-19 21:48+0200\n" ++"Last-Translator: Stavros Giannouris \n" + "Language-Team: Greek \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -22,7 +22,7 @@ + + #: ../config/launcher-7.rc.in.h:2 + msgid "X terminal emulator" +-msgstr "Προσομοίωση τερματικού X" ++msgstr "Προσομοίωτής τερματικού X" + + #: ../config/launcher-8.rc.in.h:1 + msgid "Edit text files" +@@ -52,7 +52,7 @@ + #: ../libxfce4panel/xfce-panel-external-item.c:182 + #, c-format + msgid "An item was unexpectedly removed: \"%s\"." +-msgstr "Ένα αντικείμενο αφαιρέθηκε αναπάντεχα: \"%s\"." ++msgstr "Ένα αντικείμενο διαγράφηκε αναπάντεχα: \"%s\"." + + #: ../libxfce4panel/xfce-panel-plugin-iface.c:584 + #, c-format +@@ -63,7 +63,7 @@ + msgid "" + "The item will be removed from the panel and its configuration will be lost." + msgstr "" +-"Αυτό το αντικείμενο θα αφαιρεθεί από το ταμπλό και οι ρυθμίσεις του θα " ++"Αυτό το αντικείμενο θα διαγραφεί από το ταμπλό και οι ρυθμίσεις του θα " + "χαθούν." + + #. configure, hide by default +@@ -209,7 +209,7 @@ + "Drag items from the list to a panel or remove them by dragging them back to " + "the list." + msgstr "" +-"Σύρετε αντικείμενα από τη λίστα στο ταμπλό ή αφαιρέστε υπάρχοντα αντικείμενα " ++"Σύρετε αντικείμενα από τη λίστα στο ταμπλό ή διαγράψετε υπάρχοντα αντικείμενα " + "μεταφέροντας τα πίσω στη λίστα." + + #: ../panel/panel-dialogs.c:644 +@@ -593,17 +593,17 @@ + + #: ../plugins/systray/systray.c:69 ../plugins/systray/systray.c:84 + msgid "There is already a system tray running on this screen" +-msgstr "Υπάρχει ήδη μια εργαλειοθήκη συστήματος σε αυτή την οθόνη" ++msgstr "Υπάρχει ήδη ένα πλαίσιο συστήματος σε αυτή την οθόνη" + + #: ../plugins/systray/systray.c:90 + #, c-format + msgid "Unable to register system tray: %s" +-msgstr "Αδύνατη η καταχώρηση της εργαλειοθήκης συστήματος: %s" ++msgstr "Αδύνατη η καταχώρηση του πλαισίου συστήματος: %s" + + #: ../plugins/systray/systray.c:378 + #: ../plugins/systray/systray.desktop.in.in.h:2 + msgid "System Tray" +-msgstr "Πίνακας συστήματος" ++msgstr "Πλαίσιο συστήματος" + + #: ../plugins/tasklist/tasklist.c:396 ../plugins/tasklist/tasklist.c:469 + #: ../plugins/tasklist/tasklist.desktop.in.in.h:2 +@@ -632,21 +632,21 @@ + + #: ../plugins/tasklist/tasklist.c:500 + msgid "Automatically group tasks" +-msgstr "Αυτόματη ομαδοποίηση εργασιών" ++msgstr "Αυτόματη ομαδοποίηση παραθύρων" + + #: ../plugins/tasklist/tasklist.c:503 + msgid "Always group tasks" +-msgstr "Πάντα ομαδοποίηση εργασιών" ++msgstr "Πάντα ομαδοποίηση παραθύρων" + + #: ../plugins/windowlist/windowlist.c:242 + #, c-format + msgid "Are you sure you want to remove workspace %d?" +-msgstr "Σίγουρα θέλετε να αφαιρέσετε το χώρο εργασίας %d;" ++msgstr "Σίγουρα θέλετε να διαγράψετε το χώρο εργασίας %d;" + + #: ../plugins/windowlist/windowlist.c:243 + #, c-format + msgid "Are you sure you want to remove workspace '%s'?" +-msgstr "Σίγουρα θέλετε να αφαιρέσετε το χώρο εργασίας %s;" ++msgstr "Σίγουρα θέλετε να διαγράψετε το χώρο εργασίας %s;" + + #: ../plugins/windowlist/windowlist.c:508 + #, c-format +@@ -661,12 +661,12 @@ + #: ../plugins/windowlist/windowlist.c:644 + #, c-format + msgid "Remove Workspace %d" +-msgstr "Αφαίρεση χώρου εργασίας %d" ++msgstr "Διαγραφή χώρου εργασίας %d" + + #: ../plugins/windowlist/windowlist.c:645 + #, c-format + msgid "Remove Workspace '%s'" +-msgstr "Αφαίρεση χώρου εργασίας '%s'" ++msgstr "Διαγραφή χώρου εργασίας '%s'" + + #. Windowlist Settings + #: ../plugins/windowlist/windowlist-dialog.c:121 +@@ -779,12 +779,3 @@ + #: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:3 + msgid "Xfce 4 Panel Manager" + msgstr "Διαχειριστής ταμπλό Xfce 4" +- +-#~ msgid "Test Plugin" +-#~ msgstr "Δοκιμαστικό άρθρωμα" +- +-#~ msgid "This plugin has no purpose" +-#~ msgstr "Αυτό το άρθρωμα δεν έχει νόημα" +- +-#~ msgid "Size" +-#~ msgstr "Μέγεθος" +diff -Naur xfce4-panel-4.4.2/po/es.po xfce4-panel-4.4.2/po.new/es.po +--- xfce4-panel-4.4.2/po/es.po 2007-11-17 20:31:00.000000000 +0100 ++++ xfce4-panel-4.4.2/po.new/es.po 2008-10-19 23:11:07.000000000 +0200 +@@ -255,7 +255,7 @@ + + #: ../panel/panel-dialogs.c:1110 + msgid "Auto_hide" +-msgstr "Ocultar automáticamente" ++msgstr "Auto_ocultar" + + #: ../panel/panel-dialogs.c:1128 ../plugins/actions/actions.c:471 + msgid "Orientation:" +diff -Naur xfce4-panel-4.4.2/po/id.po xfce4-panel-4.4.2/po.new/id.po +--- xfce4-panel-4.4.2/po/id.po 1970-01-01 01:00:00.000000000 +0100 ++++ xfce4-panel-4.4.2/po.new/id.po 2008-10-19 23:11:07.000000000 +0200 +@@ -0,0 +1,788 @@ ++# Indonesian translation of the xfce4-panel package. ++# Copyright (C) 2002-2006 The Xfce development team. ++# This file is distributed under the same license as the xfce4-panel package. ++# Andhika Padmawan , 2008. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: xfce4-panel 4.4.0\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2007-03-27 15:28+0200\n" ++"PO-Revision-Date: 2008-05-30 10:57+0700\n" ++"Last-Translator: Andhika Padmawan \n" ++"Language-Team: Indonesian \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=utf-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: ../config/launcher-7.rc.in.h:1 ++msgid "Command Prompt" ++msgstr "Siap Ketik Perintah" ++ ++#: ../config/launcher-7.rc.in.h:2 ++msgid "X terminal emulator" ++msgstr "Emulator terminal X" ++ ++#: ../config/launcher-8.rc.in.h:1 ++msgid "Edit text files" ++msgstr "Sunting berkas teks" ++ ++#: ../config/launcher-8.rc.in.h:2 ++#: ../plugins/launcher/launcher-dialog.c:102 ++msgid "Editor" ++msgstr "Penyunting" ++ ++#: ../config/launcher-9.rc.in.h:1 ++msgid "File Manager" ++msgstr "Manajer Berkas" ++ ++#: ../config/launcher-9.rc.in.h:2 ++msgid "Manage files and folders" ++msgstr "Atur berkas dan folder" ++ ++#: ../config/launcher-10.rc.in.h:1 ++msgid "Surf the internet" ++msgstr "Jelajahi internet" ++ ++#: ../config/launcher-10.rc.in.h:2 ++msgid "Web Browser" ++msgstr "Peramban Web" ++ ++#. dialogs are annoying, just spit out a warning ++#: ../libxfce4panel/xfce-panel-external-item.c:182 ++#, c-format ++msgid "An item was unexpectedly removed: \"%s\"." ++msgstr "Sebuah item secara tak terduga terhapus: \"%s\"." ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:584 ++#, c-format ++msgid "Remove \"%s\"?" ++msgstr "Hapus \"%s\"?" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:599 ++msgid "The item will be removed from the panel and its configuration will be lost." ++msgstr "Item akan dihapus dari panel dan konfigurasinya akan hilang." ++ ++#. configure, hide by default ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:788 ++msgid "Properties" ++msgstr "Properti" ++ ++#. about item, hide by default ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:805 ++msgid "About" ++msgstr "Tentang" ++ ++#. move ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:817 ++msgid "Move" ++msgstr "Pindah" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:837 ++msgid "Remove" ++msgstr "Hapus" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:854 ++msgid "Add New Item" ++msgstr "Tambah Item Baru" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:866 ++#: ../panel/panel.c:697 ++#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:1 ++msgid "Customize Panel" ++msgstr "Kustomisasi Panel" ++ ++#: ../panel/panel.c:708 ++msgid "Add Items" ++msgstr "Tambah Item" ++ ++#: ../panel/panel.c:724 ++#: ../plugins/actions/actions.c:286 ++#: ../plugins/actions/actions.c:320 ++#: ../plugins/actions/actions.c:458 ++msgid "Quit" ++msgstr "Keluar" ++ ++#: ../panel/panel.c:734 ++msgid "Restart" ++msgstr "Start Ulang" ++ ++#: ../panel/panel.c:748 ++msgid "About the Xfce Panel" ++msgstr "Tentang Panel Xfce" ++ ++#: ../panel/panel-app.c:238 ++#: ../panel/panel-app.c:876 ++msgid "Exit Xfce Panel?" ++msgstr "Keluar Panel Xfce?" ++ ++#: ../panel/panel-app.c:874 ++#: ../panel/panel-app.c:906 ++#: ../panel/panel-app.c:940 ++#: ../plugins/launcher/launcher.c:375 ++#: ../plugins/launcher/launcher.c:401 ++#: ../plugins/launcher/launcher.c:437 ++msgid "Xfce Panel" ++msgstr "Panel Xfce" ++ ++#: ../panel/panel-app.c:877 ++msgid "You can't remove the last panel. Would you like to exit the program?" ++msgstr "Anda tak dapat menghapus panel terakhir. Anda ingin keluar program?" ++ ++#: ../panel/panel-app.c:904 ++#, c-format ++msgid "Remove Panel \"%d\"?" ++msgstr "Hapus Panel \"%d\"?" ++ ++#: ../panel/panel-app.c:908 ++msgid "The selected panel and all its items will be removed." ++msgstr "Panel terpilih dan seluruh itemnya akan dihapus." ++ ++#: ../panel/panel-app.c:947 ++#: ../panel/panel-app.c:950 ++msgid "Developer" ++msgstr "Pengembang" ++ ++#: ../panel/main.c:46 ++#, c-format ++msgid "" ++"\n" ++" Xfce Panel %s\n" ++"\n" ++" Part of the Xfce Desktop Environment\n" ++" http://www.xfce.org\n" ++"\n" ++" Licensed under the GNU GPL.\n" ++"\n" ++msgstr "" ++"\n" ++" Panel Xfce %s\n" ++"\n" ++" Bagian dari Lingkungan Destop Xfce\n" ++" http://www.xfce.org\n" ++"\n" ++" Dilisensikan di bawah GNU GPL.\n" ++"\n" ++ ++#: ../panel/main.c:52 ++#, c-format ++msgid "" ++" Usage: %s [OPTIONS]\n" ++"\n" ++msgstr "" ++" Penggunaan: %s [OPSI]\n" ++"\n" ++ ++#. Only translate the descriptions, not the options itself ++#: ../panel/main.c:55 ++msgid "" ++" OPTIONS\n" ++" -h, --help Show this message and exit\n" ++" -v, --version Show this message and exit\n" ++" -c, --customize Show configuration dialog\n" ++" -s, --save Save configuration\n" ++" -r, --restart Restart panels\n" ++" -q, --quit End the session\n" ++" -x, --exit Close all panels and end the program\n" ++" -a, --add Add new items\n" ++"\n" ++msgstr "" ++" OPSI\n" ++" -h, --help Tampilkan pesan ini lalu keluar\n" ++" -v, --version Tampilkan pesan ini lalu keluar\n" ++" -c, --customize Tampilkan dialog konfigurasi\n" ++" -s, --save Simpan konfigurasi\n" ++" -r, --restart Start ulang panel\n" ++" -q, --quit Akhiri sesi\n" ++" -x, --exit Tutup semua panel dan akhiri program\n" ++" -a, --add Tambah item baru\n" ++"\n" ++ ++#: ../panel/panel-dialogs.c:184 ++#, c-format ++msgid "Could not open \"%s\" module" ++msgstr "Tak dapat membuka modul \"%s\"" ++ ++#: ../panel/panel-dialogs.c:597 ++msgid "Add Items to the Panel" ++msgstr "Tambah item ke Panel" ++ ++#: ../panel/panel-dialogs.c:627 ++msgid "Drag items from the list to a panel or remove them by dragging them back to the list." ++msgstr "Tarik item dari senarai ke panel atau hapus dengan cara menariknya kembali ke senarai." ++ ++#: ../panel/panel-dialogs.c:644 ++msgid "Available Items" ++msgstr "Item Tersedia" ++ ++#: ../panel/panel-dialogs.c:870 ++#: ../panel/panel-dialogs.c:1094 ++msgid "Normal Width" ++msgstr "Lebar Normal" ++ ++#: ../panel/panel-dialogs.c:872 ++#: ../panel/panel-dialogs.c:1096 ++msgid "Full Width" ++msgstr "Lebar Penuh" ++ ++#: ../panel/panel-dialogs.c:878 ++#: ../panel/panel-dialogs.c:1102 ++msgid "Span Monitors" ++msgstr "Rentangkan Monitor" ++ ++#: ../panel/panel-dialogs.c:938 ++#: ../panel/panel-dialogs.c:1167 ++msgid "Left" ++msgstr "Kiri" ++ ++#: ../panel/panel-dialogs.c:940 ++#: ../panel/panel-dialogs.c:1169 ++msgid "Right" ++msgstr "Kanan" ++ ++#: ../panel/panel-dialogs.c:945 ++#: ../panel/panel-dialogs.c:1174 ++msgid "Top" ++msgstr "Atas" ++ ++#: ../panel/panel-dialogs.c:947 ++#: ../panel/panel-dialogs.c:1176 ++msgid "Bottom" ++msgstr "Bawah" ++ ++#. position ++#: ../panel/panel-dialogs.c:975 ++msgid "Position" ++msgstr "Posisi" ++ ++#: ../panel/panel-dialogs.c:989 ++msgid "Fixed Position" ++msgstr "Posisi Tetap" ++ ++#: ../panel/panel-dialogs.c:995 ++msgid "Freely Moveable" ++msgstr "Bebas Bergerak" ++ ++#: ../panel/panel-dialogs.c:1110 ++msgid "Auto_hide" ++msgstr "Otomatis sembunyi (_h)" ++ ++#: ../panel/panel-dialogs.c:1128 ++#: ../plugins/actions/actions.c:471 ++msgid "Orientation:" ++msgstr "Orientasi:" ++ ++#: ../panel/panel-dialogs.c:1140 ++#: ../plugins/actions/actions.c:484 ++msgid "Horizontal" ++msgstr "Horizontal" ++ ++#: ../panel/panel-dialogs.c:1142 ++#: ../plugins/actions/actions.c:485 ++msgid "Vertical" ++msgstr "Vertikal" ++ ++#: ../panel/panel-dialogs.c:1151 ++msgid "Handle:" ++msgstr "Penanganan:" ++ ++#: ../panel/panel-dialogs.c:1163 ++msgid "At both sides" ++msgstr "Di kedua sisi" ++ ++#: ../panel/panel-dialogs.c:1236 ++msgid "Select Monitor" ++msgstr "Pilih Monitor" ++ ++#. Button Layout ++#: ../panel/panel-dialogs.c:1354 ++#: ../plugins/clock/clock.c:496 ++#: ../plugins/tasklist/tasklist.c:424 ++#: ../plugins/windowlist/windowlist-dialog.c:190 ++msgid "Appearance" ++msgstr "Tampilan" ++ ++#. size ++#: ../panel/panel-dialogs.c:1365 ++msgid "Size (pixels):" ++msgstr "Ukuran (piksel):" ++ ++#: ../panel/panel-dialogs.c:1393 ++msgid "Transparency (%):" ++msgstr "Transparansi (%):" ++ ++#: ../panel/panel-dialogs.c:1417 ++msgid "Make active panel opaque" ++msgstr "Buat panel aktif opaque" ++ ++#: ../panel/panel-dialogs.c:1456 ++#: ../panel/panel-dialogs.c:1492 ++#: ../panel/panel-dialogs.c:1517 ++#, c-format ++msgid "Panel %d" ++msgstr "Panel %d" ++ ++#: ../panel/panel-dialogs.c:1536 ++msgid "Remove Panel" ++msgstr "Hapus Panel" ++ ++#: ../panel/panel-dialogs.c:1549 ++msgid "New Panel" ++msgstr "Panel Baru" ++ ++#: ../panel/panel-dialogs.c:1606 ++#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:2 ++msgid "Panel Manager" ++msgstr "Manajer Panel" ++ ++#: ../plugins/actions/actions.c:267 ++#: ../plugins/actions/actions.c:303 ++#: ../plugins/actions/actions.c:459 ++msgid "Lock screen" ++msgstr "Kunci layar" ++ ++#: ../plugins/actions/actions.c:419 ++msgid "Panel Actions" ++msgstr "Aksi Panel" ++ ++#: ../plugins/actions/actions.c:449 ++msgid "Select action type:" ++msgstr "Pilih tipe aksi:" ++ ++#: ../plugins/actions/actions.c:460 ++msgid "Quit + Lock screen" ++msgstr "Keluar + Kunci layar" ++ ++#. Use format characters from strftime(3) ++#. * to get the proper string for your locale. ++#. * I used these: ++#. * %A : full weekday name ++#. * %d : day of the month ++#. * %B : full month name ++#. * %Y : four digit year ++#. ++#: ../plugins/clock/clock.c:122 ++msgid "%A %d %B %Y" ++msgstr "%A %d %B %Y" ++ ++#: ../plugins/clock/clock.c:481 ++#: ../plugins/clock/clock.desktop.in.in.h:1 ++msgid "Clock" ++msgstr "Jam" ++ ++#. Keep order in sync with XfceClockMode ++#: ../plugins/clock/clock.c:508 ++msgid "Analog" ++msgstr "Analog" ++ ++#: ../plugins/clock/clock.c:509 ++msgid "Digital" ++msgstr "Digital" ++ ++#: ../plugins/clock/clock.c:510 ++msgid "LED" ++msgstr "LED" ++ ++#: ../plugins/clock/clock.c:515 ++#: ../plugins/systray/systray.c:402 ++msgid "Show _frame" ++msgstr "Tampilkan bingkai (_f)" ++ ++#: ../plugins/clock/clock.c:522 ++msgid "Clock Options" ++msgstr "Opsi Jam" ++ ++#: ../plugins/clock/clock.c:530 ++msgid "Use 24-_hour clock" ++msgstr "Gunakan format 24-jam (_h)" ++ ++#: ../plugins/clock/clock.c:537 ++msgid "Show AM/PM" ++msgstr "Tampilkan AM/PM" ++ ++#: ../plugins/clock/clock.c:544 ++msgid "Display seconds" ++msgstr "Tampilkan detik" ++ ++#: ../plugins/iconbox/iconbox.c:901 ++#: ../plugins/iconbox/iconbox.desktop.in.in.h:1 ++msgid "Icon Box" ++msgstr "Kotak Ikon" ++ ++#: ../plugins/iconbox/iconbox.c:926 ++msgid "Only show minimized applications" ++msgstr "Hanya tampilkan aplikasi diminimalkan" ++ ++#: ../plugins/iconbox/iconbox.c:935 ++msgid "Show applications of all workspaces" ++msgstr "Tampilkan aplikasi di semua ruang kerja" ++ ++#: ../plugins/iconbox/iconbox.c:943 ++#: ../plugins/tasklist/tasklist.c:447 ++msgid "Use all available space" ++msgstr "Gunakan semua ruang tersedia" ++ ++#: ../plugins/launcher/launcher.c:373 ++#: ../plugins/launcher/launcher.c:435 ++#, c-format ++msgid "Could not run \"%s\"" ++msgstr "Tak dapat menjalankan \"%s\"" ++ ++#: ../plugins/launcher/launcher.c:398 ++#, c-format ++msgid "Error in command \"%s\"" ++msgstr "Galat pada perintah \"%s\"" ++ ++#: ../plugins/launcher/launcher.c:675 ++#: ../plugins/launcher/launcher.c:1303 ++#: ../plugins/launcher/launcher-dialog.c:1167 ++msgid "New Item" ++msgstr "Item Baru" ++ ++#: ../plugins/launcher/launcher.c:1304 ++msgid "This item has not yet been configured" ++msgstr "Item ini belum dikonfigurasi" ++ ++#: ../plugins/launcher/launcher-dialog.c:101 ++msgid "Default" ++msgstr "Standar" ++ ++#: ../plugins/launcher/launcher-dialog.c:103 ++msgid "File management" ++msgstr "Manajemen berkas" ++ ++#: ../plugins/launcher/launcher-dialog.c:104 ++msgid "Utilities" ++msgstr "Utilitas" ++ ++#: ../plugins/launcher/launcher-dialog.c:105 ++msgid "Games" ++msgstr "Permainan" ++ ++#: ../plugins/launcher/launcher-dialog.c:106 ++msgid "Help browser" ++msgstr "Peramban bantuan" ++ ++#: ../plugins/launcher/launcher-dialog.c:107 ++msgid "Multimedia" ++msgstr "Multimedia" ++ ++#: ../plugins/launcher/launcher-dialog.c:108 ++msgid "Network" ++msgstr "Jaringan" ++ ++#: ../plugins/launcher/launcher-dialog.c:109 ++msgid "Graphics" ++msgstr "Grafis" ++ ++#: ../plugins/launcher/launcher-dialog.c:110 ++msgid "Printer" ++msgstr "Pencetak" ++ ++#: ../plugins/launcher/launcher-dialog.c:111 ++msgid "Productivity" ++msgstr "Produktivitas" ++ ++#: ../plugins/launcher/launcher-dialog.c:112 ++msgid "Office" ++msgstr "Perkantoran" ++ ++#: ../plugins/launcher/launcher-dialog.c:113 ++msgid "Sound" ++msgstr "Suara" ++ ++#: ../plugins/launcher/launcher-dialog.c:114 ++msgid "Terminal" ++msgstr "Terminal" ++ ++#: ../plugins/launcher/launcher-dialog.c:115 ++msgid "Development" ++msgstr "Pengembangan" ++ ++#: ../plugins/launcher/launcher-dialog.c:413 ++msgid "Select image file" ++msgstr "Pilih berkas gambar" ++ ++#: ../plugins/launcher/launcher-dialog.c:459 ++msgid "Select command" ++msgstr "Pilih perintah" ++ ++#: ../plugins/launcher/launcher-dialog.c:482 ++msgid "Name" ++msgstr "Nama" ++ ++#: ../plugins/launcher/launcher-dialog.c:500 ++msgid "Description" ++msgstr "Deskripsi" ++ ++#: ../plugins/launcher/launcher-dialog.c:555 ++msgid "Other..." ++msgstr "Lainnya..." ++ ++#: ../plugins/launcher/launcher-dialog.c:653 ++msgid "Command" ++msgstr "Perintah" ++ ++#: ../plugins/launcher/launcher-dialog.c:689 ++msgid "Run in _terminal" ++msgstr "Jalankan di _terminal" ++ ++#: ../plugins/launcher/launcher-dialog.c:707 ++msgid "Use _startup notification" ++msgstr "Gunakan pemberitahuan hidupkan (_s)" ++ ++#: ../plugins/launcher/launcher-dialog.c:1289 ++msgid "The first item in the list is shown on the panel. Additional items will appear in a menu." ++msgstr "Item pertama di senarai akan ditampilkan pada panel. Item tambahan akan muncul pada menu." ++ ++#: ../plugins/launcher/launcher-dialog.c:1332 ++msgid "Program Launcher" ++msgstr "Peluncur Program" ++ ++#: ../plugins/launcher/launcher-dialog.c:1420 ++#: ../plugins/launcher/launcher-dialog.c:1521 ++#, c-format ++msgid "" ++"Failed to run 0launch:\n" ++"%s\n" ++"\n" ++"For help using Zero Install, see http://0install.net" ++msgstr "" ++"Gagal menjalankan 0peluncur:\n" ++"%s\n" ++"\n" ++"Untuk bantuan cara menggunakan instal Zero, lihat http://0install.net" ++ ++#: ../plugins/launcher/launcher-dialog.c:1486 ++msgid "The Zero Install GUI has finished, but the launcher dialog has disappeared in the meantime. Not adding launcher (but any files downloaded have not been lost)." ++msgstr "GUI Instal Zero telah selesai, tapi sementara itu dialog peluncur telah menghilang.Tak menambahkan peluncur (tapi berkas apapun yang telah diunduh tak hilang)." ++ ++#: ../plugins/launcher/launcher-dialog.c:1899 ++msgid "Select file" ++msgstr "Pilih berkas" ++ ++#: ../plugins/pager/pager.c:338 ++#: ../plugins/pager/pager.desktop.in.in.h:2 ++msgid "Pager" ++msgstr "Pemisah" ++ ++#: ../plugins/pager/pager.c:369 ++msgid "Number of rows:" ++msgstr "Jumlah baris:" ++ ++#: ../plugins/pager/pager.c:373 ++msgid "Number of columns:" ++msgstr "Jumlah kolom:" ++ ++#: ../plugins/pager/pager.c:399 ++msgid "Switch workspaces using the mouse wheel" ++msgstr "Pindah ruang kerja menggunakan roda tetikus" ++ ++#: ../plugins/separator/separator.c:255 ++#: ../plugins/separator/separator.desktop.in.in.h:2 ++msgid "Separator or Spacing" ++msgstr "Pemisah atau Spasi" ++ ++#: ../plugins/separator/separator.c:279 ++msgid "_Draw Separator" ++msgstr "Gambar Pemisah (_D)" ++ ++#: ../plugins/separator/separator.c:288 ++msgid "_Expand" ++msgstr "Perluas (_E)" ++ ++#: ../plugins/showdesktop/showdesktop.c:32 ++msgid "Restore hidden windows" ++msgstr "Simpan ulang jendela tersembunyi" ++ ++#: ../plugins/showdesktop/showdesktop.c:33 ++msgid "Hide windows and show desktop" ++msgstr "Sembunyikan jendela dan tampilkan destop" ++ ++#: ../plugins/systray/systray.c:69 ++#: ../plugins/systray/systray.c:84 ++msgid "There is already a system tray running on this screen" ++msgstr "Telah ada baki sistem yang berjalan di layar ini" ++ ++#: ../plugins/systray/systray.c:90 ++#, c-format ++msgid "Unable to register system tray: %s" ++msgstr "Tak dapat mendaftarkan baki sistem: %s" ++ ++#: ../plugins/systray/systray.c:378 ++#: ../plugins/systray/systray.desktop.in.in.h:2 ++msgid "System Tray" ++msgstr "Baki Sistem" ++ ++#: ../plugins/tasklist/tasklist.c:396 ++#: ../plugins/tasklist/tasklist.c:469 ++#: ../plugins/tasklist/tasklist.desktop.in.in.h:2 ++msgid "Task List" ++msgstr "Senarai Tugas" ++ ++#: ../plugins/tasklist/tasklist.c:432 ++msgid "Minimum Width:" ++msgstr "Lebar Minimum:" ++ ++#: ../plugins/tasklist/tasklist.c:456 ++msgid "Use flat buttons" ++msgstr "Gunakan tombol rata" ++ ++#: ../plugins/tasklist/tasklist.c:473 ++msgid "Show tasks from _all workspaces" ++msgstr "Tampilkan tugas dari semu_a ruang kerja" ++ ++#: ../plugins/tasklist/tasklist.c:483 ++msgid "Show application _names" ++msgstr "Tampilkan _nama aplikasi" ++ ++#: ../plugins/tasklist/tasklist.c:497 ++msgid "Never group tasks" ++msgstr "Jangan kelompokkan tugas" ++ ++#: ../plugins/tasklist/tasklist.c:500 ++msgid "Automatically group tasks" ++msgstr "Otomatis kelompokkan tugas" ++ ++#: ../plugins/tasklist/tasklist.c:503 ++msgid "Always group tasks" ++msgstr "Selalu kelompokkan tugas" ++ ++#: ../plugins/windowlist/windowlist.c:242 ++#, c-format ++msgid "Are you sure you want to remove workspace %d?" ++msgstr "Anda yakin ingin menghapus ruang kerja %d?" ++ ++#: ../plugins/windowlist/windowlist.c:243 ++#, c-format ++msgid "Are you sure you want to remove workspace '%s'?" ++msgstr "Anda yakin ingin menghapus ruang kerja '%s'?" ++ ++#: ../plugins/windowlist/windowlist.c:508 ++#, c-format ++msgid "Workspace %d" ++msgstr "Ruang kerja %d" ++ ++#: ../plugins/windowlist/windowlist.c:619 ++#: ../plugins/windowlist/windowlist.c:625 ++msgid "Add workspace" ++msgstr "Tambah ruang kerja" ++ ++#: ../plugins/windowlist/windowlist.c:644 ++#, c-format ++msgid "Remove Workspace %d" ++msgstr "Hapus Ruang Kerja %d" ++ ++#: ../plugins/windowlist/windowlist.c:645 ++#, c-format ++msgid "Remove Workspace '%s'" ++msgstr "Hapus Ruang Kerja '%s'" ++ ++#. Windowlist Settings ++#: ../plugins/windowlist/windowlist-dialog.c:121 ++#: ../plugins/windowlist/windowlist-dialog.c:212 ++#: ../plugins/windowlist/windowlist.desktop.in.in.h:2 ++msgid "Window List" ++msgstr "Senarai Jendela" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:150 ++msgid "Urgency notification will blink the button when an application needs attention." ++msgstr "Pemberitahuan Penting akan mengedipkan tombol ketika sebuah aplikasi membutuhkan perhatian." ++ ++#. Button Urgency Notification ++#: ../plugins/windowlist/windowlist-dialog.c:157 ++msgid "Urgency Notification" ++msgstr "Pemberitahuan Penting" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:164 ++msgid "_Disabled" ++msgstr "Non aktifkan (_D)" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:173 ++msgid "For _other workspaces" ++msgstr "Untuk ruang kerja lainnya (_o)" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:182 ++msgid "For _all workspaces" ++msgstr "Untuk semu_a ruang kerja" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:196 ++msgid "_Icon button" ++msgstr "Tombol ikon (_I)" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:203 ++msgid "A_rrow button" ++msgstr "Tombol panah (_r)" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:221 ++msgid "Show _windows from all workspaces" ++msgstr "Tampilkan jendela dari semua ruang kerja (_w)" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:230 ++msgid "Show a_pplication icons" ++msgstr "Tampilkan ikon a_plikasi" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:239 ++msgid "Show wor_kspace actions" ++msgstr "Tampilkan aksi ruang _kerja" ++ ++#: ../mcs-plugin/plugin.c:46 ++msgid "Panel" ++msgstr "Panel" ++ ++#: ../plugins/actions/actions.desktop.in.in.h:1 ++msgid "Action Buttons" ++msgstr "Tombol Aksi" ++ ++#: ../plugins/actions/actions.desktop.in.in.h:2 ++msgid "Log out or lock the screen" ++msgstr "Log keluar atau kunci layar" ++ ++#: ../plugins/clock/clock.desktop.in.in.h:2 ++msgid "What time is it?" ++msgstr "Jam berapa sekarang?" ++ ++#: ../plugins/iconbox/iconbox.desktop.in.in.h:2 ++msgid "Show icons of all running applications" ++msgstr "Tampilkan ikon dari semua aplikasi berjalan" ++ ++#: ../plugins/launcher/launcher.desktop.in.in.h:1 ++msgid "Launcher" ++msgstr "Peluncur" ++ ++#: ../plugins/launcher/launcher.desktop.in.in.h:2 ++msgid "Program launcher with optional menu" ++msgstr "Peluncur program dengan menu opsional" ++ ++#: ../plugins/pager/pager.desktop.in.in.h:1 ++msgid "Miniature view of all virtual desktops" ++msgstr "Tampilan miniatur dari semua destop virtual" ++ ++#: ../plugins/separator/separator.desktop.in.in.h:1 ++msgid "Adds a space or a line between panel items" ++msgstr "Tambah spasi atau baris diantara item panel" ++ ++#: ../plugins/showdesktop/showdesktop.desktop.in.in.h:1 ++msgid "Show Desktop" ++msgstr "Tampilkan Destop" ++ ++#: ../plugins/showdesktop/showdesktop.desktop.in.in.h:2 ++msgid "Toggle desktop show/hide" ++msgstr "Ubah tampilkan/sembunyikan destop" ++ ++#: ../plugins/systray/systray.desktop.in.in.h:1 ++msgid "Show notification icons" ++msgstr "Tampilkan ikon pemberitahuan" ++ ++#: ../plugins/tasklist/tasklist.desktop.in.in.h:1 ++msgid "Show all running applications" ++msgstr "Tampilkan semua aplikasi berjalan" ++ ++#: ../plugins/windowlist/windowlist.desktop.in.in.h:1 ++msgid "Show list of available windows" ++msgstr "Tampilkan senarai jendela yang tersedia" ++ ++#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:3 ++msgid "Xfce 4 Panel Manager" ++msgstr "Manajer Panel Xfce 4" ++ +diff -Naur xfce4-panel-4.4.2/po/LINGUAS xfce4-panel-4.4.2/po.new/LINGUAS +--- xfce4-panel-4.4.2/po/LINGUAS 2007-11-17 20:31:00.000000000 +0100 ++++ xfce4-panel-4.4.2/po.new/LINGUAS 2008-10-19 23:11:07.000000000 +0200 +@@ -1,3 +1,3 @@ + # set of available languages (in alphabetic order) +-am ar az be bg bn_IN ca cs de dz el en_GB eo es es_MX et eu fa fi fr gl gu he hi hu hy it ja ka ko lt lv mk mr ms nb_NO nl pa pl pt_BR pt_PT ro ru sk sv ta tr uk vi zh_CN zh_TW ++am ar az be bg bn_IN ca cs de dz el en_GB eo es es_MX et eu fa fi fr gl gu he hi hu hy id it ja ka ko lt lv mk mr ms nb_NO nl pa pl pt_BR pt_PT ro ru si sk sv ta tr uk ur vi zh_CN zh_TW + +diff -Naur xfce4-panel-4.4.2/po/lv.po xfce4-panel-4.4.2/po.new/lv.po +--- xfce4-panel-4.4.2/po/lv.po 2007-11-17 20:31:00.000000000 +0100 ++++ xfce4-panel-4.4.2/po.new/lv.po 2008-10-19 23:11:07.000000000 +0200 +@@ -1,27 +1,31 @@ ++# translation of lv.po to Latvian + # Latvian translations for xfce4-panel package. + # Copyright (C) 2002-2007 The Xfce development team. + # This file is distributed under the same license as the xfce4-pane package. +-# Rihards Prieditis , 2007. + # ++# Rihards Prieditis , 2007. ++# Rihards Prieditis , 2008. + msgid "" + msgstr "" +-"Project-Id-Version: xfce4-panel 4.4.0\n" ++"Project-Id-Version: lv\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2007-10-23 11:15+0200\n" +-"PO-Revision-Date: 2007-11-10 14:13+0300\n" +-"Last-Translator: Rihards Priedītis \n" +-"Language-Team: Latvian \n" ++"POT-Creation-Date: 2007-12-12 12:57+0100\n" ++"PO-Revision-Date: 2008-04-06 20:53+0300\n" ++"Last-Translator: Rihards Prieditis \n" ++"Language-Team: Latvian \n" + "MIME-Version: 1.0\n" +-"Content-Type: text/plain; charset=utf-8\n" ++"Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"X-Generator: KBabel 1.11.4\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + + #: ../config/launcher-7.rc.in.h:1 + msgid "Command Prompt" +-msgstr "Komandu Līnija" ++msgstr "Komandu līnija" + + #: ../config/launcher-7.rc.in.h:2 + msgid "X terminal emulator" +-msgstr "X termināļa emulators" ++msgstr "X termināla emulators" + + #: ../config/launcher-8.rc.in.h:1 + msgid "Edit text files" +@@ -34,7 +38,7 @@ + + #: ../config/launcher-9.rc.in.h:1 + msgid "File Manager" +-msgstr "Faila Pārvaldnieks" ++msgstr "Failu pārvaldnieks" + + #: ../config/launcher-9.rc.in.h:2 + msgid "Manage files and folders" +@@ -46,7 +50,7 @@ + + #: ../config/launcher-10.rc.in.h:2 + msgid "Web Browser" +-msgstr "Tīmekļa Pārlūks" ++msgstr "Tīmekļa pārlūks" + + #. dialogs are annoying, just spit out a warning + #: ../libxfce4panel/xfce-panel-external-item.c:182 +@@ -84,17 +88,17 @@ + + #: ../libxfce4panel/xfce-panel-plugin-iface.c:854 + msgid "Add New Item" +-msgstr "Pievienot Jaunu Vienumu" ++msgstr "Pievienot jaunu vienumu" + + #: ../libxfce4panel/xfce-panel-plugin-iface.c:866 + #: ../panel/panel.c:697 + #: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:1 + msgid "Customize Panel" +-msgstr "Pielāgot Paneli" ++msgstr "Pielāgot paneli" + + #: ../panel/panel.c:708 + msgid "Add Items" +-msgstr "Pievienot Vienumus" ++msgstr "Pievienot vienumus" + + #: ../panel/panel.c:724 + #: ../plugins/actions/actions.c:286 +@@ -109,12 +113,12 @@ + + #: ../panel/panel.c:748 + msgid "About the Xfce Panel" +-msgstr "Par Xfce Paneli" ++msgstr "Par Xfce paneli" + + #: ../panel/panel-app.c:238 + #: ../panel/panel-app.c:876 + msgid "Exit Xfce Panel?" +-msgstr "Iziet no Xfce Panelis?" ++msgstr "Iziet no Xfce paneļa?" + + #: ../panel/panel-app.c:874 + #: ../panel/panel-app.c:906 +@@ -123,7 +127,7 @@ + #: ../plugins/launcher/launcher.c:401 + #: ../plugins/launcher/launcher.c:437 + msgid "Xfce Panel" +-msgstr "Xfce Panelis" ++msgstr "Xfce panelis" + + #: ../panel/panel-app.c:877 + msgid "You can't remove the last panel. Would you like to exit the program?" +@@ -132,7 +136,7 @@ + #: ../panel/panel-app.c:904 + #, c-format + msgid "Remove Panel \"%d\"?" +-msgstr "Noņemt Paneli \"%d\"?" ++msgstr "Noņemt paneli \"%d\"?" + + #: ../panel/panel-app.c:908 + msgid "The selected panel and all its items will be removed." +@@ -156,12 +160,12 @@ + "\n" + msgstr "" + "\n" +-" Xfce Panelis %s\n" ++" Xfce panelis %s\n" + "\n" +-" Daļa no Xfce Vides\n" ++" Daļa no Xfce darbavirsmas vides\n" + " http://www.xfce.org\n" + "\n" +-" Licencēta zem GNU GPL.\n" ++" Licenzēts zem GNU GPL.\n" + "\n" + + #: ../panel/main.c:52 +@@ -170,7 +174,7 @@ + " Usage: %s [OPTIONS]\n" + "\n" + msgstr "" +-" Lietošana: %s [OPCIJAS]\n" ++"Lietošana: %s [OPCIJAS]\n" + "\n" + + #. Only translate the descriptions, not the options itself +@@ -193,7 +197,7 @@ + " -c, --customize Rāda konfigurācijas dialogu\n" + " -s, --save Saglabā konfigurāciju\n" + " -r, --restart Restartē paneļus\n" +-" -q, --quit Pārtrauc sesiju\n" ++" -q, --quit Beidz sesiju\n" + " -x, --exit Aizver visus paneļus un aizver programmu\n" + " -a, --add Pievieno jaunus vienumus\n" + "\n" +@@ -205,7 +209,7 @@ + + #: ../panel/panel-dialogs.c:597 + msgid "Add Items to the Panel" +-msgstr "Pievienot Vienumus Panelim" ++msgstr "Pievienot vienumus panelim" + + #: ../panel/panel-dialogs.c:627 + msgid "Drag items from the list to a panel or remove them by dragging them back to the list." +@@ -213,22 +217,22 @@ + + #: ../panel/panel-dialogs.c:644 + msgid "Available Items" +-msgstr "Pieejamie Vienumi" ++msgstr "Pieejamie vienumi" + + #: ../panel/panel-dialogs.c:870 + #: ../panel/panel-dialogs.c:1094 + msgid "Normal Width" +-msgstr "Normāls Platums" ++msgstr "Normāls platums" + + #: ../panel/panel-dialogs.c:872 + #: ../panel/panel-dialogs.c:1096 + msgid "Full Width" +-msgstr "Pilns Platums" ++msgstr "Pilns platums" + + #: ../panel/panel-dialogs.c:878 + #: ../panel/panel-dialogs.c:1102 + msgid "Span Monitors" +-msgstr "Savienot Monitorus" ++msgstr "Savienot monitorus" + + #: ../panel/panel-dialogs.c:938 + #: ../panel/panel-dialogs.c:1167 +@@ -257,15 +261,15 @@ + + #: ../panel/panel-dialogs.c:989 + msgid "Fixed Position" +-msgstr "Fiksēta Pozīcija" ++msgstr "Fiksēta pozīcija" + + #: ../panel/panel-dialogs.c:995 + msgid "Freely Moveable" +-msgstr "Brīvi Pārvietojams" ++msgstr "Brīvi pārvietojams" + + #: ../panel/panel-dialogs.c:1110 + msgid "Auto_hide" +-msgstr "Autmātiska _slēpšana" ++msgstr "Automātiska _slēpšana" + + #: ../panel/panel-dialogs.c:1128 + #: ../plugins/actions/actions.c:471 +@@ -292,7 +296,7 @@ + + #: ../panel/panel-dialogs.c:1236 + msgid "Select Monitor" +-msgstr "Norādīt Monitoru" ++msgstr "Norādīt monitoru" + + #. Button Layout + #: ../panel/panel-dialogs.c:1354 +@@ -324,16 +328,16 @@ + + #: ../panel/panel-dialogs.c:1536 + msgid "Remove Panel" +-msgstr "Noņemt Paneli" ++msgstr "Noņemt paneli" + + #: ../panel/panel-dialogs.c:1549 + msgid "New Panel" +-msgstr "Jauns Panelis" ++msgstr "Jauns panelis" + + #: ../panel/panel-dialogs.c:1606 + #: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:2 + msgid "Panel Manager" +-msgstr "Paneļu Pārvaldnieks" ++msgstr "Paneļu pārvaldnieks" + + #: ../plugins/actions/actions.c:267 + #: ../plugins/actions/actions.c:303 +@@ -343,7 +347,7 @@ + + #: ../plugins/actions/actions.c:419 + msgid "Panel Actions" +-msgstr "Paneļa Darbības" ++msgstr "Paneļa darbības" + + #: ../plugins/actions/actions.c:449 + msgid "Select action type:" +@@ -390,7 +394,7 @@ + + #: ../plugins/clock/clock.c:522 + msgid "Clock Options" +-msgstr "Pulksteņa Uzstādījumi" ++msgstr "Pulksteņa uzstādījumi" + + #: ../plugins/clock/clock.c:530 + msgid "Use 24-_hour clock" +@@ -407,7 +411,7 @@ + #: ../plugins/iconbox/iconbox.c:901 + #: ../plugins/iconbox/iconbox.desktop.in.in.h:1 + msgid "Icon Box" +-msgstr "Ikonu Kaste" ++msgstr "Ikonu kaste" + + #: ../plugins/iconbox/iconbox.c:926 + msgid "Only show minimized applications" +@@ -426,7 +430,7 @@ + #: ../plugins/launcher/launcher.c:435 + #, c-format + msgid "Could not run \"%s\"" +-msgstr "Nevarēju palaist \"%s\"" ++msgstr "Nevarēju izpildīt \"%s\"" + + #: ../plugins/launcher/launcher.c:398 + #, c-format +@@ -437,11 +441,11 @@ + #: ../plugins/launcher/launcher.c:1303 + #: ../plugins/launcher/launcher-dialog.c:1167 + msgid "New Item" +-msgstr "Jauns Vienums" ++msgstr "Jauns vienums" + + #: ../plugins/launcher/launcher.c:1304 + msgid "This item has not yet been configured" +-msgstr "Šis vienums vēl nav konfigurēts" ++msgstr "Šis vienums nav vēl nokonfigurēts." + + #: ../plugins/launcher/launcher-dialog.c:101 + msgid "Default" +@@ -449,11 +453,11 @@ + + #: ../plugins/launcher/launcher-dialog.c:103 + msgid "File management" +-msgstr "Failu pārvaldnieks" ++msgstr "Failu pārvaldība" + + #: ../plugins/launcher/launcher-dialog.c:104 + msgid "Utilities" +-msgstr "Utilītas" ++msgstr "Sīkprogrammas" + + #: ../plugins/launcher/launcher-dialog.c:105 + msgid "Games" +@@ -461,7 +465,7 @@ + + #: ../plugins/launcher/launcher-dialog.c:106 + msgid "Help browser" +-msgstr "Palīdzības Pārlūks" ++msgstr "Palīdzības pārlūks" + + #: ../plugins/launcher/launcher-dialog.c:107 + msgid "Multimedia" +@@ -477,7 +481,7 @@ + + #: ../plugins/launcher/launcher-dialog.c:110 + msgid "Printer" +-msgstr "Printeris" ++msgstr "Printeri" + + #: ../plugins/launcher/launcher-dialog.c:111 + msgid "Productivity" +@@ -497,7 +501,7 @@ + + #: ../plugins/launcher/launcher-dialog.c:115 + msgid "Development" +-msgstr "Izstrādāja" ++msgstr "Izstrādāšana" + + #: ../plugins/launcher/launcher-dialog.c:413 + msgid "Select image file" +@@ -505,7 +509,7 @@ + + #: ../plugins/launcher/launcher-dialog.c:459 + msgid "Select command" +-msgstr "Norādiet komandu" ++msgstr "Norādīt komandu" + + #: ../plugins/launcher/launcher-dialog.c:482 + msgid "Name" +@@ -533,11 +537,11 @@ + + #: ../plugins/launcher/launcher-dialog.c:1289 + msgid "The first item in the list is shown on the panel. Additional items will appear in a menu." +-msgstr "Pirmais saraksta vienums tiek rādīts uz paneļa. Papildus vienumi parādīsies izvēlnē." ++msgstr "Šī ir pirmā reize, kad saraksts tiek rādīts uz paneļa. Papilds vienumi pārādisies šai izvēlnē." + + #: ../plugins/launcher/launcher-dialog.c:1332 + msgid "Program Launcher" +-msgstr "Programmu Palaidējs" ++msgstr "Programmu palaidējs" + + #: ../plugins/launcher/launcher-dialog.c:1420 + #: ../plugins/launcher/launcher-dialog.c:1521 +@@ -548,18 +552,18 @@ + "\n" + "For help using Zero Install, see http://0install.net" + msgstr "" +-"Neizdevas palaist 0launch:\n" ++"Neizdevās palais 0lunch:\n" + "%s\n" + "\n" +-"Palīdziba par Nulles Installācijas izmantošanu pieejama http://0install.net" ++"Griezieties uz http://0install.net pēc palīdzibas." + + #: ../plugins/launcher/launcher-dialog.c:1486 + msgid "The Zero Install GUI has finished, but the launcher dialog has disappeared in the meantime. Not adding launcher (but any files downloaded have not been lost)." +-msgstr "Nulles Instalācijas GUI izpildījis uzdevumu, bet palaidēja dialogs ir pazudis šai laikā. Nepievienoju palaidēju (bet lejupielādētie faili nav zuduši)." ++msgstr "Nulles instalētja GUI pabeidzis, bet palaidēja logs ir pazudis. Palaidējs nav pievienots (lejupielādetie faili nav zuduši)." + + #: ../plugins/launcher/launcher-dialog.c:1899 + msgid "Select file" +-msgstr "Norādiet Failu" ++msgstr "Norādīt failu" + + #: ../plugins/pager/pager.c:338 + #: ../plugins/pager/pager.desktop.in.in.h:2 +@@ -581,15 +585,15 @@ + #: ../plugins/separator/separator.c:255 + #: ../plugins/separator/separator.desktop.in.in.h:2 + msgid "Separator or Spacing" +-msgstr "Atdalītājs vai Atkāpe" ++msgstr "Atdalītājs vai atstarpe" + + #: ../plugins/separator/separator.c:279 + msgid "_Draw Separator" +-msgstr "_Zīmēt Atdalītāju" ++msgstr "_Zīmēt atdalītāju" + + #: ../plugins/separator/separator.c:288 + msgid "_Expand" +-msgstr "_Paplašināt" ++msgstr "_Izplest" + + #: ../plugins/showdesktop/showdesktop.c:32 + msgid "Restore hidden windows" +@@ -602,27 +606,27 @@ + #: ../plugins/systray/systray.c:69 + #: ../plugins/systray/systray.c:84 + msgid "There is already a system tray running on this screen" +-msgstr "Sistēmas Josla jau skrien šai ekrānā" ++msgstr "Sistēmas josla jau skrien šai ekrānā" + + #: ../plugins/systray/systray.c:90 + #, c-format + msgid "Unable to register system tray: %s" +-msgstr "Neizdevās reģistrēt sistēmas joslu: %s" ++msgstr "Nevarēja reģistrēt sistēmas joslu: %s" + + #: ../plugins/systray/systray.c:378 + #: ../plugins/systray/systray.desktop.in.in.h:2 + msgid "System Tray" +-msgstr "Sistēmas Josla" ++msgstr "Sistēmas josla" + + #: ../plugins/tasklist/tasklist.c:396 + #: ../plugins/tasklist/tasklist.c:469 + #: ../plugins/tasklist/tasklist.desktop.in.in.h:2 + msgid "Task List" +-msgstr "Uzdevumu Saraksts" ++msgstr "Uzdevumu saraksts" + + #: ../plugins/tasklist/tasklist.c:432 + msgid "Minimum Width:" +-msgstr "Minimālais Platums:" ++msgstr "Minimālais platums:" + + #: ../plugins/tasklist/tasklist.c:456 + msgid "Use flat buttons" +@@ -634,7 +638,7 @@ + + #: ../plugins/tasklist/tasklist.c:483 + msgid "Show application _names" +-msgstr "Rādīt lietotnes _nosaukumus" ++msgstr "Rādīt _lietotnes nosaukumu" + + #: ../plugins/tasklist/tasklist.c:497 + msgid "Never group tasks" +@@ -671,19 +675,19 @@ + #: ../plugins/windowlist/windowlist.c:644 + #, c-format + msgid "Remove Workspace %d" +-msgstr "Noņemt Darbavietu %d" ++msgstr "Noņemt darbavietu %d" + + #: ../plugins/windowlist/windowlist.c:645 + #, c-format + msgid "Remove Workspace '%s'" +-msgstr "Noņemt Darbavietu '%s'" ++msgstr "Noņemt darbavietu '%s'" + + #. Windowlist Settings + #: ../plugins/windowlist/windowlist-dialog.c:121 + #: ../plugins/windowlist/windowlist-dialog.c:212 + #: ../plugins/windowlist/windowlist.desktop.in.in.h:2 + msgid "Window List" +-msgstr "Logu Saraksts" ++msgstr "Logu saraksts" + + #: ../plugins/windowlist/windowlist-dialog.c:150 + msgid "Urgency notification will blink the button when an application needs attention." +@@ -692,7 +696,7 @@ + #. Button Urgency Notification + #: ../plugins/windowlist/windowlist-dialog.c:157 + msgid "Urgency Notification" +-msgstr "Steidzamā Paziņošana" ++msgstr "Steidzamā paziņošana" + + #: ../plugins/windowlist/windowlist-dialog.c:164 + msgid "_Disabled" +@@ -732,7 +736,7 @@ + + #: ../plugins/actions/actions.desktop.in.in.h:1 + msgid "Action Buttons" +-msgstr "Darbību Pogas" ++msgstr "Darbību pogas" + + #: ../plugins/actions/actions.desktop.in.in.h:2 + msgid "Log out or lock the screen" +@@ -764,7 +768,7 @@ + + #: ../plugins/showdesktop/showdesktop.desktop.in.in.h:1 + msgid "Show Desktop" +-msgstr "Rādīt Darbavirsmu" ++msgstr "Rādīt darbavirsmu" + + #: ../plugins/showdesktop/showdesktop.desktop.in.in.h:2 + msgid "Toggle desktop show/hide" +@@ -784,5 +788,5 @@ + + #: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:3 + msgid "Xfce 4 Panel Manager" +-msgstr "Xfce 4 Paneļu Pārvaldnieks" ++msgstr "Xfce 4 paneļu pārvaldnieks" + +diff -Naur xfce4-panel-4.4.2/po/si.po xfce4-panel-4.4.2/po.new/si.po +--- xfce4-panel-4.4.2/po/si.po 1970-01-01 01:00:00.000000000 +0100 ++++ xfce4-panel-4.4.2/po.new/si.po 2008-10-19 23:11:07.000000000 +0200 +@@ -0,0 +1,768 @@ ++# translation of xfce4-panel.po to Sinhala ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the PACKAGE package. ++# ++# Rashan Anushka , 2008. ++msgid "" ++msgstr "" ++"Project-Id-Version: xfce4-panel\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2007-03-27 15:28+0200\n" ++"PO-Revision-Date: 2008-02-10 18:59+0530\n" ++"Last-Translator: Rashan Anushka \n" ++"Language-Team: Sinhala \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Generator: KBabel 1.11.4\n" ++ ++#: ../config/launcher-7.rc.in.h:1 ++msgid "Command Prompt" ++msgstr "විධාන ප්‍රේරකය" ++ ++#: ../config/launcher-7.rc.in.h:2 ++msgid "X terminal emulator" ++msgstr "X terminal emulator" ++ ++#: ../config/launcher-8.rc.in.h:1 ++msgid "Edit text files" ++msgstr "පෙළ ගොනු සකසන්න" ++ ++#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102 ++msgid "Editor" ++msgstr "සකසනය" ++ ++#: ../config/launcher-9.rc.in.h:1 ++msgid "File Manager" ++msgstr "ගොනු කළමණාකරු" ++ ++#: ../config/launcher-9.rc.in.h:2 ++msgid "Manage files and folders" ++msgstr "ගොනු හා ෆෝල්ඩර කළමණාකරනය කරන්න" ++ ++#: ../config/launcher-10.rc.in.h:1 ++msgid "Surf the internet" ++msgstr "අන්තර්ජාලය සැරිසරන්න" ++ ++#: ../config/launcher-10.rc.in.h:2 ++msgid "Web Browser" ++msgstr "වියුනු බ්‍රව්සරය" ++ ++#. dialogs are annoying, just spit out a warning ++#: ../libxfce4panel/xfce-panel-external-item.c:182 ++#, c-format ++msgid "An item was unexpectedly removed: \"%s\"." ++msgstr "බලාපොරොත්තු නොවූ ලෙස අයිතමයක් ඉවත්විය: \"%s\"." ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:584 ++#, c-format ++msgid "Remove \"%s\"?" ++msgstr "\"%s\" ඉවත් කරන්නද?" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:599 ++msgid "The item will be removed from the panel and its configuration will be lost." ++msgstr "අයිතමය පුවරුවෙන් ඉවත් කරනු ඇති අතර එහි වින්‍යාසයන් නැතිවනු ඇත." ++ ++#. configure, hide by default ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:788 ++msgid "Properties" ++msgstr "වත්කම්" ++ ++#. about item, hide by default ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:805 ++msgid "About" ++msgstr "සම්බන්ධයෙන්" ++ ++#. move ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:817 ++msgid "Move" ++msgstr "මාරු කරන්න" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:837 ++msgid "Remove" ++msgstr "ඉවත් කරන්න" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:854 ++msgid "Add New Item" ++msgstr "නව අයිතමයක් එක් කරන්න" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:866 ../panel/panel.c:697 ++#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:1 ++msgid "Customize Panel" ++msgstr "පුවරුව සකසන්න" ++ ++#: ../panel/panel.c:708 ++msgid "Add Items" ++msgstr "අයිතම එක් කරන්න" ++ ++#: ../panel/panel.c:724 ../plugins/actions/actions.c:286 ++#: ../plugins/actions/actions.c:320 ../plugins/actions/actions.c:458 ++msgid "Quit" ++msgstr "පිටවන්න" ++ ++#: ../panel/panel.c:734 ++msgid "Restart" ++msgstr "යළි අරඹන්න" ++ ++#: ../panel/panel.c:748 ++msgid "About the Xfce Panel" ++msgstr "Xfce පුවරුව ගැන" ++ ++#: ../panel/panel-app.c:238 ../panel/panel-app.c:876 ++msgid "Exit Xfce Panel?" ++msgstr "Xfce පුවරුවෙන් පිටවන්නද?" ++ ++#: ../panel/panel-app.c:874 ../panel/panel-app.c:906 ../panel/panel-app.c:940 ++#: ../plugins/launcher/launcher.c:375 ../plugins/launcher/launcher.c:401 ++#: ../plugins/launcher/launcher.c:437 ++msgid "Xfce Panel" ++msgstr "Xfce පුවරුව" ++ ++#: ../panel/panel-app.c:877 ++msgid "You can't remove the last panel. Would you like to exit the program?" ++msgstr "ඔබට අවසාන පුවරුව ඉවත්කළ නොහැක. ඔබට යෙදුමෙන් පිටවීමට කැමතිද?" ++ ++#: ../panel/panel-app.c:904 ++#, c-format ++msgid "Remove Panel \"%d\"?" ++msgstr "\"%d\" පුවරුව ඉවත් කරන්නද?" ++ ++#: ../panel/panel-app.c:908 ++msgid "The selected panel and all its items will be removed." ++msgstr "තේරු පුවරුව හා එහි සියළුම අයිතමයන් ඉවත් කරනු ඇත." ++ ++#: ../panel/panel-app.c:947 ../panel/panel-app.c:950 ++msgid "Developer" ++msgstr "වැඩිදියුණුකරන්නා" ++ ++#: ../panel/main.c:46 ++#, c-format ++msgid "" ++"\n" ++" Xfce Panel %s\n" ++"\n" ++" Part of the Xfce Desktop Environment\n" ++" http://www.xfce.org\n" ++"\n" ++" Licensed under the GNU GPL.\n" ++"\n" ++msgstr "" ++"\n" ++" %s Xfce පුවරුව\n" ++"\n" ++" Xfce වැඩතල පරිසරයේ කොටසකි\n" ++" http://www.xfce.org\n" ++"\n" ++" GNU GPL වරපත යටතේ නිකුත්කර ඇත.\n" ++"\n" ++ ++#: ../panel/main.c:52 ++#, c-format ++msgid "" ++" Usage: %s [OPTIONS]\n" ++"\n" ++msgstr "" ++"භාවිතය: %s [OPTIONS]\n" ++"\n" ++ ++#. Only translate the descriptions, not the options itself ++#: ../panel/main.c:55 ++msgid "" ++" OPTIONS\n" ++" -h, --help Show this message and exit\n" ++" -v, --version Show this message and exit\n" ++" -c, --customize Show configuration dialog\n" ++" -s, --save Save configuration\n" ++" -r, --restart Restart panels\n" ++" -q, --quit End the session\n" ++" -x, --exit Close all panels and end the program\n" ++" -a, --add Add new items\n" ++"\n" ++msgstr "" ++"විකල්ප\n" ++" -h, --help මෙම පණිවිඩය පෙන්වා පිටවේ\n" ++" -v, --version මෙම පණිවිඩය පෙන්වා පිටවේ\n" ++" -c, --customize වින්‍යාස සංවාද කොටුව පෙන්වයි\n" ++" -s, --save වින්‍යාස සුරකී\n" ++" -r, --restart පුවරු යළි අරඹයි\n" ++" -q, --quit සැසිය නිමා කරයි\n" ++" -x, --exit සියළු පුවරු වසා යෙදුම නිමා කරයි\n" ++" -a, --add නව අයිතමයක් එක් කරයි\n" ++"\n" ++ ++#: ../panel/panel-dialogs.c:184 ++#, c-format ++msgid "Could not open \"%s\" module" ++msgstr "\"%s\" මොඩියුලය විවෘත කළ නොහැක" ++ ++#: ../panel/panel-dialogs.c:597 ++msgid "Add Items to the Panel" ++msgstr "පුවරුවට අයිතම එක් කරන්න" ++ ++#: ../panel/panel-dialogs.c:627 ++msgid "" ++"Drag items from the list to a panel or remove them by dragging them back to " ++"the list." ++msgstr "ලැයිස්තුවෙන් අයිතම පුවරුවට ඇදහෙළන්න හෝ නැවත ඒවා ලැයිස්තුවට ඇදහෙළීම මගින් ඉවත් කරන්න." ++ ++#: ../panel/panel-dialogs.c:644 ++msgid "Available Items" ++msgstr "පවතින අයිතම" ++ ++#: ../panel/panel-dialogs.c:870 ../panel/panel-dialogs.c:1094 ++msgid "Normal Width" ++msgstr "සාමාන්‍ය පළල" ++ ++#: ../panel/panel-dialogs.c:872 ../panel/panel-dialogs.c:1096 ++msgid "Full Width" ++msgstr "සම්පූර්ණ පළල" ++ ++#: ../panel/panel-dialogs.c:878 ../panel/panel-dialogs.c:1102 ++msgid "Span Monitors" ++msgstr "පාරායණ මොනිටර" ++ ++#: ../panel/panel-dialogs.c:938 ../panel/panel-dialogs.c:1167 ++msgid "Left" ++msgstr "වම" ++ ++#: ../panel/panel-dialogs.c:940 ../panel/panel-dialogs.c:1169 ++msgid "Right" ++msgstr "දකුණ" ++ ++#: ../panel/panel-dialogs.c:945 ../panel/panel-dialogs.c:1174 ++msgid "Top" ++msgstr "ඉහළ" ++ ++#: ../panel/panel-dialogs.c:947 ../panel/panel-dialogs.c:1176 ++msgid "Bottom" ++msgstr "පහළ" ++ ++#. position ++#: ../panel/panel-dialogs.c:975 ++msgid "Position" ++msgstr "ස්ථානය" ++ ++#: ../panel/panel-dialogs.c:989 ++msgid "Fixed Position" ++msgstr "අචල ස්ථානය" ++ ++#: ../panel/panel-dialogs.c:995 ++msgid "Freely Moveable" ++msgstr "නිදහසේ චලනය කළ හැකි" ++ ++#: ../panel/panel-dialogs.c:1110 ++msgid "Auto_hide" ++msgstr "ස්වයංක්‍රීය සැඟවීම(_h)" ++ ++#: ../panel/panel-dialogs.c:1128 ../plugins/actions/actions.c:471 ++msgid "Orientation:" ++msgstr "දිශානතිය:" ++ ++#: ../panel/panel-dialogs.c:1140 ../plugins/actions/actions.c:484 ++msgid "Horizontal" ++msgstr "තිරස්" ++ ++#: ../panel/panel-dialogs.c:1142 ../plugins/actions/actions.c:485 ++msgid "Vertical" ++msgstr "සිරස්" ++ ++#: ../panel/panel-dialogs.c:1151 ++msgid "Handle:" ++msgstr "හසුරුව:" ++ ++#: ../panel/panel-dialogs.c:1163 ++msgid "At both sides" ++msgstr "පැති දෙකේම" ++ ++#: ../panel/panel-dialogs.c:1236 ++msgid "Select Monitor" ++msgstr "මොනිටරය තෝරන්න" ++ ++#. Button Layout ++#: ../panel/panel-dialogs.c:1354 ../plugins/clock/clock.c:496 ++#: ../plugins/tasklist/tasklist.c:424 ++#: ../plugins/windowlist/windowlist-dialog.c:190 ++msgid "Appearance" ++msgstr "පෙනුම" ++ ++#. size ++#: ../panel/panel-dialogs.c:1365 ++msgid "Size (pixels):" ++msgstr "තරම (පික්සල):" ++ ++#: ../panel/panel-dialogs.c:1393 ++msgid "Transparency (%):" ++msgstr "පාරදෘශ්‍යතාව (%):" ++ ++#: ../panel/panel-dialogs.c:1417 ++msgid "Make active panel opaque" ++msgstr "සක්‍රිය පුවරු පාරාන්ධ කරන්න" ++ ++#: ../panel/panel-dialogs.c:1456 ../panel/panel-dialogs.c:1492 ++#: ../panel/panel-dialogs.c:1517 ++#, c-format ++msgid "Panel %d" ++msgstr "%d පුවරුව" ++ ++#: ../panel/panel-dialogs.c:1536 ++msgid "Remove Panel" ++msgstr "පුවරුව ඉවත් කරන්න" ++ ++#: ../panel/panel-dialogs.c:1549 ++msgid "New Panel" ++msgstr "නව පුවරුවක්" ++ ++#: ../panel/panel-dialogs.c:1606 ++#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:2 ++msgid "Panel Manager" ++msgstr "පුවරු කළමණාකරු" ++ ++#: ../plugins/actions/actions.c:267 ../plugins/actions/actions.c:303 ++#: ../plugins/actions/actions.c:459 ++msgid "Lock screen" ++msgstr "තිරය අඟුළුලන්න" ++ ++#: ../plugins/actions/actions.c:419 ++msgid "Panel Actions" ++msgstr "පුවරු ක්‍රියාවන්" ++ ++#: ../plugins/actions/actions.c:449 ++msgid "Select action type:" ++msgstr "ක්‍රියා වර්ගය තෝරන්න:" ++ ++#: ../plugins/actions/actions.c:460 ++msgid "Quit + Lock screen" ++msgstr "පිටවන්න + තිරය අඟුළුලන්න" ++ ++#. Use format characters from strftime(3) ++#. * to get the proper string for your locale. ++#. * I used these: ++#. * %A : full weekday name ++#. * %d : day of the month ++#. * %B : full month name ++#. * %Y : four digit year ++#. ++#: ../plugins/clock/clock.c:122 ++msgid "%A %d %B %Y" ++msgstr "%A %d %B %Y" ++ ++#: ../plugins/clock/clock.c:481 ../plugins/clock/clock.desktop.in.in.h:1 ++msgid "Clock" ++msgstr "ඔරලෝසුව" ++ ++#. Keep order in sync with XfceClockMode ++#: ../plugins/clock/clock.c:508 ++msgid "Analog" ++msgstr "ප්‍රතිසමය" ++ ++#: ../plugins/clock/clock.c:509 ++msgid "Digital" ++msgstr "අංකිත" ++ ++#: ../plugins/clock/clock.c:510 ++msgid "LED" ++msgstr "LED" ++ ++#: ../plugins/clock/clock.c:515 ../plugins/systray/systray.c:402 ++msgid "Show _frame" ++msgstr "රාමුව පෙන්වන්න (_f)" ++ ++#: ../plugins/clock/clock.c:522 ++msgid "Clock Options" ++msgstr "ඔරලෝසු අභිරුචි" ++ ++#: ../plugins/clock/clock.c:530 ++msgid "Use 24-_hour clock" ++msgstr "පැය 24 ඔරලෝසුව භාවිතා කරන්න(_h)" ++ ++#: ../plugins/clock/clock.c:537 ++msgid "Show AM/PM" ++msgstr "පෙ.ව/ප.ව පෙන්වන්න" ++ ++#: ../plugins/clock/clock.c:544 ++msgid "Display seconds" ++msgstr "තත්පර පෙන්වන්න" ++ ++#: ../plugins/iconbox/iconbox.c:901 ++#: ../plugins/iconbox/iconbox.desktop.in.in.h:1 ++msgid "Icon Box" ++msgstr "නිරූපක කොටුව" ++ ++#: ../plugins/iconbox/iconbox.c:926 ++msgid "Only show minimized applications" ++msgstr "හැකිළූ යෙදුම් පමණක් පෙන්වන්න" ++ ++#: ../plugins/iconbox/iconbox.c:935 ++msgid "Show applications of all workspaces" ++msgstr "සියළු වැඩතලයන්හි යෙදුම් පෙන්වන්න" ++ ++#: ../plugins/iconbox/iconbox.c:943 ../plugins/tasklist/tasklist.c:447 ++msgid "Use all available space" ++msgstr "පවතින සියළුම ඉඩ භාවිතා කරන්න" ++ ++#: ../plugins/launcher/launcher.c:373 ../plugins/launcher/launcher.c:435 ++#, c-format ++msgid "Could not run \"%s\"" ++msgstr "\"%s\" ක්‍රියාත්මක කළ නොහැක" ++ ++#: ../plugins/launcher/launcher.c:398 ++#, c-format ++msgid "Error in command \"%s\"" ++msgstr "\"%s\" විධානයේ දෝෂයකි" ++ ++#: ../plugins/launcher/launcher.c:675 ../plugins/launcher/launcher.c:1303 ++#: ../plugins/launcher/launcher-dialog.c:1167 ++msgid "New Item" ++msgstr "නව අයිතමයක්" ++ ++#: ../plugins/launcher/launcher.c:1304 ++msgid "This item has not yet been configured" ++msgstr "මෙම අයිතමය තවම වින්‍යාස කර නැත" ++ ++#: ../plugins/launcher/launcher-dialog.c:101 ++msgid "Default" ++msgstr "පෙරනිමිය" ++ ++#: ../plugins/launcher/launcher-dialog.c:103 ++msgid "File management" ++msgstr "ගොනු කළමණාකරනය" ++ ++#: ../plugins/launcher/launcher-dialog.c:104 ++msgid "Utilities" ++msgstr "උපයුක්තතා" ++ ++#: ../plugins/launcher/launcher-dialog.c:105 ++msgid "Games" ++msgstr "ක්‍රීඩා" ++ ++#: ../plugins/launcher/launcher-dialog.c:106 ++msgid "Help browser" ++msgstr "උදව් බ්‍රවුසරය" ++ ++#: ../plugins/launcher/launcher-dialog.c:107 ++msgid "Multimedia" ++msgstr "බහුමාධ්‍ය" ++ ++#: ../plugins/launcher/launcher-dialog.c:108 ++msgid "Network" ++msgstr "ජාලකරණ" ++ ++#: ../plugins/launcher/launcher-dialog.c:109 ++msgid "Graphics" ++msgstr "චිත්‍රක" ++ ++#: ../plugins/launcher/launcher-dialog.c:110 ++msgid "Printer" ++msgstr "මුද්‍රකය" ++ ++#: ../plugins/launcher/launcher-dialog.c:111 ++msgid "Productivity" ++msgstr "ඵලදායීතාව" ++ ++#: ../plugins/launcher/launcher-dialog.c:112 ++msgid "Office" ++msgstr "කාර්යාලීය" ++ ++#: ../plugins/launcher/launcher-dialog.c:113 ++msgid "Sound" ++msgstr "ශබ්දය" ++ ++#: ../plugins/launcher/launcher-dialog.c:114 ++msgid "Terminal" ++msgstr "අග්‍රය" ++ ++#: ../plugins/launcher/launcher-dialog.c:115 ++msgid "Development" ++msgstr "වැඩිදියුණු කිරීම්" ++ ++#: ../plugins/launcher/launcher-dialog.c:413 ++msgid "Select image file" ++msgstr "අනුරූ ගොනුවක් තෝරන්න" ++ ++#: ../plugins/launcher/launcher-dialog.c:459 ++msgid "Select command" ++msgstr "විධානයක් තෝරන්න" ++ ++#: ../plugins/launcher/launcher-dialog.c:482 ++msgid "Name" ++msgstr "නාමය" ++ ++#: ../plugins/launcher/launcher-dialog.c:500 ++msgid "Description" ++msgstr "විස්තරය" ++ ++#: ../plugins/launcher/launcher-dialog.c:555 ++msgid "Other..." ++msgstr "වෙනත්..." ++ ++#: ../plugins/launcher/launcher-dialog.c:653 ++msgid "Command" ++msgstr "විධානය" ++ ++#: ../plugins/launcher/launcher-dialog.c:689 ++msgid "Run in _terminal" ++msgstr "අග්‍රයේ ක්‍රියාත්මක කරන්න(_t)" ++ ++#: ../plugins/launcher/launcher-dialog.c:707 ++msgid "Use _startup notification" ++msgstr "ආරම්භක නිවේදන භාවිතා කරන්න(_s)" ++ ++#: ../plugins/launcher/launcher-dialog.c:1289 ++msgid "" ++"The first item in the list is shown on the panel. Additional items will " ++"appear in a menu." ++msgstr "ලැයිස්තුවේ පළමු අයිතමය පෘවරුවේ පෙන්වනු ඇත. අතිරේක අයිතම මෙනුවක දිස්වනු ඇත." ++ ++#: ../plugins/launcher/launcher-dialog.c:1332 ++msgid "Program Launcher" ++msgstr "යෙදුම් පුරනය" ++ ++#: ../plugins/launcher/launcher-dialog.c:1420 ++#: ../plugins/launcher/launcher-dialog.c:1521 ++#, c-format ++msgid "" ++"Failed to run 0launch:\n" ++"%s\n" ++"\n" ++"For help using Zero Install, see http://0install.net" ++msgstr "" ++"0launch ක්‍රියාත්මක කිරීම අසමත් විය:\n" ++"%s\n" ++"\n" ++"Zero Install භාවිතයට උදව් සඳහා, http://0install.net බලන්න" ++ ++#: ../plugins/launcher/launcher-dialog.c:1486 ++msgid "" ++"The Zero Install GUI has finished, but the launcher dialog has disappeared " ++"in the meantime. Not adding launcher (but any files downloaded have not been " ++"lost)." ++msgstr "Zero Install GUI නිමා විය, නමුත් ඒ අතරවාරයේ පුරනයේ සංවාද කොටුව අතුරුදහන් විය. පුරනය එක් කරනු නොලැබේ (නමුත් භාගත කළ කිසිදු ගොනුවක් නැති නොවීය)." ++ ++#: ../plugins/launcher/launcher-dialog.c:1899 ++msgid "Select file" ++msgstr "ගොනුවක් තෝරන්න" ++ ++#: ../plugins/pager/pager.c:338 ../plugins/pager/pager.desktop.in.in.h:2 ++msgid "Pager" ++msgstr "පේජරය" ++ ++#: ../plugins/pager/pager.c:369 ++msgid "Number of rows:" ++msgstr "පේළි ගණන:" ++ ++#: ../plugins/pager/pager.c:373 ++msgid "Number of columns:" ++msgstr "තීරු ගණන:" ++ ++#: ../plugins/pager/pager.c:399 ++msgid "Switch workspaces using the mouse wheel" ++msgstr "මූසික රෝදය මගින් වැඩතල අතුරුමාරු කරන්න" ++ ++#: ../plugins/separator/separator.c:255 ++#: ../plugins/separator/separator.desktop.in.in.h:2 ++msgid "Separator or Spacing" ++msgstr "වෙන්කරනය හෝ අවකාශය" ++ ++#: ../plugins/separator/separator.c:279 ++msgid "_Draw Separator" ++msgstr "වෙන්කරනයක් අඳින්න(_D)" ++ ++#: ../plugins/separator/separator.c:288 ++msgid "_Expand" ++msgstr "විහිදන්න(_E)" ++ ++#: ../plugins/showdesktop/showdesktop.c:32 ++msgid "Restore hidden windows" ++msgstr "සැඟවුණු කවුළු පිලිනගන්න" ++ ++#: ../plugins/showdesktop/showdesktop.c:33 ++msgid "Hide windows and show desktop" ++msgstr "කවුළු සඟවා වැඩතලය පෙන්වන්න" ++ ++#: ../plugins/systray/systray.c:69 ../plugins/systray/systray.c:84 ++msgid "There is already a system tray running on this screen" ++msgstr "මෙම තිරයේ දැනටමත් පද්ධති බන්දේසියක් ක්‍රියාත්මක වේ" ++ ++#: ../plugins/systray/systray.c:90 ++#, c-format ++msgid "Unable to register system tray: %s" ++msgstr "පද්ධති බන්දේසිය ලියාපදිංචි කළ නොහැකි විය: %s" ++ ++#: ../plugins/systray/systray.c:378 ++#: ../plugins/systray/systray.desktop.in.in.h:2 ++msgid "System Tray" ++msgstr "පද්ධති බන්දේසිය" ++ ++#: ../plugins/tasklist/tasklist.c:396 ../plugins/tasklist/tasklist.c:469 ++#: ../plugins/tasklist/tasklist.desktop.in.in.h:2 ++msgid "Task List" ++msgstr "කාර්ය ලැයිස්තුව" ++ ++#: ../plugins/tasklist/tasklist.c:432 ++msgid "Minimum Width:" ++msgstr "අවම පළල:" ++ ++#: ../plugins/tasklist/tasklist.c:456 ++msgid "Use flat buttons" ++msgstr "සමතල බොත්තම් භාවිතා කරන්න" ++ ++#: ../plugins/tasklist/tasklist.c:473 ++msgid "Show tasks from _all workspaces" ++msgstr "සියළු වැඩතලයන්ගේ කාර්යයන් පෙන්වන්න(_a)" ++ ++#: ../plugins/tasklist/tasklist.c:483 ++msgid "Show application _names" ++msgstr "යෙදුම් නාමයන් පෙන්වන්න(_n)" ++ ++#: ../plugins/tasklist/tasklist.c:497 ++msgid "Never group tasks" ++msgstr "කිසිවිටෙක කාර්යන් සමූහනය නොකරන්න" ++ ++#: ../plugins/tasklist/tasklist.c:500 ++msgid "Automatically group tasks" ++msgstr "ස්වයංක්‍රීයවම කාර්යන් සමූහනය කරන්න" ++ ++#: ../plugins/tasklist/tasklist.c:503 ++msgid "Always group tasks" ++msgstr "සෑමවිටම කාර්යන් සමූහනය කරන්න" ++ ++#: ../plugins/windowlist/windowlist.c:242 ++#, c-format ++msgid "Are you sure you want to remove workspace %d?" ++msgstr "ඔබට %d වැඩතලය ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද?" ++ ++#: ../plugins/windowlist/windowlist.c:243 ++#, c-format ++msgid "Are you sure you want to remove workspace '%s'?" ++msgstr "ඔබට '%s' වැඩතලය ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද?" ++ ++#: ../plugins/windowlist/windowlist.c:508 ++#, c-format ++msgid "Workspace %d" ++msgstr "%d වැඩතලය" ++ ++#: ../plugins/windowlist/windowlist.c:619 ++#: ../plugins/windowlist/windowlist.c:625 ++msgid "Add workspace" ++msgstr "වැඩතලයක් එක් කරන්න" ++ ++#: ../plugins/windowlist/windowlist.c:644 ++#, c-format ++msgid "Remove Workspace %d" ++msgstr "%d වැඩතලය ඉවත් කරන්න" ++ ++#: ../plugins/windowlist/windowlist.c:645 ++#, c-format ++msgid "Remove Workspace '%s'" ++msgstr "'%s' වැඩතලය ඉවත් කරන්න" ++ ++#. Windowlist Settings ++#: ../plugins/windowlist/windowlist-dialog.c:121 ++#: ../plugins/windowlist/windowlist-dialog.c:212 ++#: ../plugins/windowlist/windowlist.desktop.in.in.h:2 ++msgid "Window List" ++msgstr "කවුළු ලැයිස්තුව" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:150 ++msgid "" ++"Urgency notification will blink the button when an application needs " ++"attention." ++msgstr "හදිසි නිවේදනමඟින් යෙදුමකට අවධානය අවශ්‍ය විටදී බොත්තම බබළවනු ඇත." ++ ++#. Button Urgency Notification ++#: ../plugins/windowlist/windowlist-dialog.c:157 ++msgid "Urgency Notification" ++msgstr "හදිසි නිවේදන" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:164 ++msgid "_Disabled" ++msgstr "අක්‍රීයයි(_D)" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:173 ++msgid "For _other workspaces" ++msgstr "වෙනත් වැඩතල සඳහා(_o)" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:182 ++msgid "For _all workspaces" ++msgstr "සියළු වැඩතල සඳහා(_a)" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:196 ++msgid "_Icon button" ++msgstr "නිරූපක බොත්තම(_I)" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:203 ++msgid "A_rrow button" ++msgstr "ඊතල බොත්තම(_r)" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:221 ++msgid "Show _windows from all workspaces" ++msgstr "සියළු වැඩතලයන්ගෙන් කවුළු පෙන්වන්න(_w)" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:230 ++msgid "Show a_pplication icons" ++msgstr "යෙදුම් නිරූපක පෙන්වන්න(_p)" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:239 ++msgid "Show wor_kspace actions" ++msgstr "වැඩතල ක්‍රියාවන් පෙන්වන්න(_k)" ++ ++#: ../mcs-plugin/plugin.c:46 ++msgid "Panel" ++msgstr "පුවරුව" ++ ++#: ../plugins/actions/actions.desktop.in.in.h:1 ++msgid "Action Buttons" ++msgstr "ක්‍රියා බොත්තම්" ++ ++#: ../plugins/actions/actions.desktop.in.in.h:2 ++msgid "Log out or lock the screen" ++msgstr "ලොගවුට් වන්න හෝ තිරය අඟුළුලන්න" ++ ++#: ../plugins/clock/clock.desktop.in.in.h:2 ++msgid "What time is it?" ++msgstr "දැන් වේලාව කීයද?" ++ ++#: ../plugins/iconbox/iconbox.desktop.in.in.h:2 ++msgid "Show icons of all running applications" ++msgstr "ක්‍රියාත්මක වන සියළු යෙදුම්හි නිරූපක පෙන්වන්න" ++ ++#: ../plugins/launcher/launcher.desktop.in.in.h:1 ++msgid "Launcher" ++msgstr "පුරනය" ++ ++#: ../plugins/launcher/launcher.desktop.in.in.h:2 ++msgid "Program launcher with optional menu" ++msgstr "විකල්ප මෙනුවක් සහිත යෙදුම් පුරනය" ++ ++#: ../plugins/pager/pager.desktop.in.in.h:1 ++msgid "Miniature view of all virtual desktops" ++msgstr "සියළු අතාතවික වැඩතලයන්හි සිඟිති දසුනක" ++ ++#: ../plugins/separator/separator.desktop.in.in.h:1 ++msgid "Adds a space or a line between panel items" ++msgstr "පුවරු අයිතම අතර රේඛාවක් හෝ හිඩැසක් එක් කරයි" ++ ++#: ../plugins/showdesktop/showdesktop.desktop.in.in.h:1 ++msgid "Show Desktop" ++msgstr "වැඩතලය පෙන්වන්න" ++ ++#: ../plugins/showdesktop/showdesktop.desktop.in.in.h:2 ++msgid "Toggle desktop show/hide" ++msgstr "වැඩතලය පෙන්වන්න/සඟවන්න" ++ ++#: ../plugins/systray/systray.desktop.in.in.h:1 ++msgid "Show notification icons" ++msgstr "නිවේදන නිරූපක පෙන්වන්න" ++ ++#: ../plugins/tasklist/tasklist.desktop.in.in.h:1 ++msgid "Show all running applications" ++msgstr "ක්‍රියාත්මකවන සියළු යෙදුම් පෙන්වන්න" ++ ++#: ../plugins/windowlist/windowlist.desktop.in.in.h:1 ++msgid "Show list of available windows" ++msgstr "පවතින කවුළුවල ලැයිස්තුවක් පෙන්වන්න" ++ ++#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:3 ++msgid "Xfce 4 Panel Manager" ++msgstr "Xfce 4 පුවරු කළමණාකරු" ++ +diff -Naur xfce4-panel-4.4.2/po/sk.po xfce4-panel-4.4.2/po.new/sk.po +--- xfce4-panel-4.4.2/po/sk.po 2007-11-17 20:31:00.000000000 +0100 ++++ xfce4-panel-4.4.2/po.new/sk.po 2008-10-19 23:11:07.000000000 +0200 +@@ -367,7 +367,6 @@ + msgstr "Digitálne" + + #: ../plugins/clock/clock.c:510 +-#, fuzzy + msgid "LED" + msgstr "LCD" + +@@ -384,12 +383,10 @@ + msgstr "Použiť 24-_hodinový čas" + + #: ../plugins/clock/clock.c:537 +-#, fuzzy + msgid "Show AM/PM" + msgstr "_Zobraziť Dopoludnia/Popoludní" + + #: ../plugins/clock/clock.c:544 +-#, fuzzy + msgid "Display seconds" + msgstr "Zobraziť _sekundy" + +@@ -411,7 +408,7 @@ + msgstr "Použiť všetok dostupný priestor" + + #: ../plugins/launcher/launcher.c:373 ../plugins/launcher/launcher.c:435 +-#, fuzzy, c-format ++#, c-format + msgid "Could not run \"%s\"" + msgstr "Nedá sa otvoriť modul \"%s\"" + +@@ -494,12 +491,10 @@ + msgstr "Zvoľte príkaz" + + #: ../plugins/launcher/launcher-dialog.c:482 +-#, fuzzy + msgid "Name" + msgstr "_Názov" + + #: ../plugins/launcher/launcher-dialog.c:500 +-#, fuzzy + msgid "Description" + msgstr "_Popis" + +@@ -508,7 +503,6 @@ + msgstr "Ďalšie..." + + #: ../plugins/launcher/launcher-dialog.c:653 +-#, fuzzy + msgid "Command" + msgstr "P_ríkaz" + +@@ -711,7 +705,7 @@ + + #: ../plugins/windowlist/windowlist-dialog.c:203 + msgid "A_rrow button" +-msgstr "Tlačidlo so šípkou" ++msgstr "_Tlačidlo so šípkou" + + #: ../plugins/windowlist/windowlist-dialog.c:221 + msgid "Show _windows from all workspaces" +@@ -719,7 +713,7 @@ + + #: ../plugins/windowlist/windowlist-dialog.c:230 + msgid "Show a_pplication icons" +-msgstr "Zobraziť ikony aplikácií" ++msgstr "Zobraziť _ikony aplikácií" + + #: ../plugins/windowlist/windowlist-dialog.c:239 + msgid "Show wor_kspace actions" +diff -Naur xfce4-panel-4.4.2/po/sq.po xfce4-panel-4.4.2/po.new/sq.po +--- xfce4-panel-4.4.2/po/sq.po 1970-01-01 01:00:00.000000000 +0100 ++++ xfce4-panel-4.4.2/po.new/sq.po 2008-10-19 23:11:07.000000000 +0200 +@@ -0,0 +1,787 @@ ++# Albanian translation of the xfce4-panel package. ++# Copyright (C) 2002-2006 The Xfce development team. ++# This file is distributed under the same license as the xfce4-panel package. ++# Besnik Bleta , 2007. ++msgid "" ++msgstr "" ++"Project-Id-Version: xfce4-panel 4.4.0\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2004-11-13 19:11+0100\n" ++"PO-Revision-Date: 2007-12-19 20:28+0200\n" ++"Last-Translator: Besnik Bleta \n" ++"Language-Team: Albanian \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: ../config/launcher-7.rc.in.h:1 ++msgid "Command Prompt" ++msgstr "Gati për Urdhër" ++ ++#: ../config/launcher-7.rc.in.h:2 ++msgid "X terminal emulator" ++msgstr "Emulues terminali X" ++ ++#: ../config/launcher-8.rc.in.h:1 ++msgid "Edit text files" ++msgstr "Përpunoni kartela teksti" ++ ++#: ../config/launcher-8.rc.in.h:2 ++#: ../plugins/launcher/launcher-dialog.c:102 ++msgid "Editor" ++msgstr "Përpunues" ++ ++#: ../config/launcher-9.rc.in.h:1 ++msgid "File Manager" ++msgstr "Përgjegjës Kartelash" ++ ++#: ../config/launcher-9.rc.in.h:2 ++msgid "Manage files and folders" ++msgstr "Administroni kartela dhe dosje" ++ ++#: ../config/launcher-10.rc.in.h:1 ++msgid "Surf the internet" ++msgstr "Lundroni në Internet" ++ ++#: ../config/launcher-10.rc.in.h:2 ++msgid "Web Browser" ++msgstr "Shfletues Web" ++ ++#. dialogs are annoying, just spit out a warning ++#: ../libxfce4panel/xfce-panel-external-item.c:182 ++#, c-format ++msgid "An item was unexpectedly removed: \"%s\"." ++msgstr "U hoq një objekt papritmas: \"%s\"." ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:584 ++#, c-format ++msgid "Remove \"%s\"?" ++msgstr "Ta heq \"%s\"?" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:599 ++msgid "The item will be removed from the panel and its configuration will be lost." ++msgstr "Objekti do të hiqet prej panelit dhe formësimi i tij do të humbë." ++ ++#. configure, hide by default ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:788 ++msgid "Properties" ++msgstr "Veti" ++ ++#. about item, hide by default ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:805 ++msgid "About" ++msgstr "Rreth" ++ ++#. move ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:817 ++msgid "Move" ++msgstr "Lëviz" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:837 ++msgid "Remove" ++msgstr "Hiq" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:854 ++msgid "Add New Item" ++msgstr "Shto Element të Ri" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:866 ++#: ../panel/panel.c:697 ++#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:1 ++msgid "Customize Panel" ++msgstr "Përshtasni Panel" ++ ++#: ../panel/panel.c:708 ++msgid "Add Items" ++msgstr "Shto elemente" ++ ++#: ../panel/panel.c:724 ++#: ../plugins/actions/actions.c:286 ++#: ../plugins/actions/actions.c:320 ++#: ../plugins/actions/actions.c:458 ++msgid "Quit" ++msgstr "Lër" ++ ++#: ../panel/panel.c:734 ++msgid "Restart" ++msgstr "Rinis" ++ ++#: ../panel/panel.c:748 ++msgid "About the Xfce Panel" ++msgstr "Rreth Panelit Xfce" ++ ++#: ../panel/panel-app.c:238 ++#: ../panel/panel-app.c:876 ++msgid "Exit Xfce Panel?" ++msgstr "Të dal nga Paneli Xfce?" ++ ++#: ../panel/panel-app.c:874 ++#: ../panel/panel-app.c:906 ++#: ../panel/panel-app.c:940 ++#: ../plugins/launcher/launcher.c:375 ++#: ../plugins/launcher/launcher.c:401 ++#: ../plugins/launcher/launcher.c:437 ++msgid "Xfce Panel" ++msgstr "Panel Xfce" ++ ++#: ../panel/panel-app.c:877 ++msgid "You can't remove the last panel. Would you like to exit the program?" ++msgstr "S'mund të hiqni panelin e fundit. Doni të dilni nga programi?" ++ ++#: ../panel/panel-app.c:904 ++#, c-format ++msgid "Remove Panel \"%d\"?" ++msgstr "Të heq Panelin \"%d\"?" ++ ++#: ../panel/panel-app.c:908 ++msgid "The selected panel and all its items will be removed." ++msgstr "Paneli i përzgjedhur dhe tërë elementet e tij do të hiqen." ++ ++#: ../panel/panel-app.c:947 ++#: ../panel/panel-app.c:950 ++msgid "Developer" ++msgstr "Zhvillues" ++ ++#: ../panel/main.c:46 ++#, c-format ++msgid "" ++"\n" ++" Xfce Panel %s\n" ++"\n" ++" Part of the Xfce Desktop Environment\n" ++" http://www.xfce.org\n" ++"\n" ++" Licensed under the GNU GPL.\n" ++"\n" ++msgstr "" ++"\n" ++"Paneli Xfce %s\n" ++"\n" ++" Pjesë e Mjedisit Xfce për Desktop\n" ++" http://www.xfce.org\n" ++"\n" ++" Licensuar sipas GNU GPL.\n" ++"\n" ++ ++#: ../panel/main.c:52 ++#, c-format ++msgid "" ++" Usage: %s [OPTIONS]\n" ++"\n" ++msgstr "" ++"Përdorim: %s [MUNDËSI]\n" ++"\n" ++ ++#. Only translate the descriptions, not the options itself ++#: ../panel/main.c:55 ++msgid "" ++" OPTIONS\n" ++" -h, --help Show this message and exit\n" ++" -v, --version Show this message and exit\n" ++" -c, --customize Show configuration dialog\n" ++" -s, --save Save configuration\n" ++" -r, --restart Restart panels\n" ++" -q, --quit End the session\n" ++" -x, --exit Close all panels and end the program\n" ++" -a, --add Add new items\n" ++"\n" ++msgstr "" ++" MUNDËSI\n" ++" -h, --help Shfaq këtë mesazh dhe dil\n" ++" -v, --version Shfaq këtë mesazh dhe dil\n" ++" -c, --customize Shfaq dialog formësimi\n" ++" -s, --save Ruaj formësimin\n" ++" -r, --restart Rinis panele\n" ++" -q, --quit Përfundo sesionin\n" ++" -x, --exit Mbyll tërë panelet dhe përfundo programin\n" ++" -a, --add Shto elementë të rinj\n" ++"\n" ++ ++#: ../panel/panel-dialogs.c:184 ++#, c-format ++msgid "Could not open \"%s\" module" ++msgstr "Nuk hap dot modul \"%s\"" ++ ++#: ../panel/panel-dialogs.c:597 ++msgid "Add Items to the Panel" ++msgstr "Shto elemente te Paneli" ++ ++#: ../panel/panel-dialogs.c:627 ++msgid "Drag items from the list to a panel or remove them by dragging them back to the list." ++msgstr "Tërhiqni në panel elementë prej një liste ose hiqini duke i tërhequr mbrapsht deri te lista." ++ ++#: ../panel/panel-dialogs.c:644 ++msgid "Available Items" ++msgstr "Elemente të Passhëm" ++ ++#: ../panel/panel-dialogs.c:870 ++#: ../panel/panel-dialogs.c:1094 ++msgid "Normal Width" ++msgstr "Gjerësi Normale" ++ ++#: ../panel/panel-dialogs.c:872 ++#: ../panel/panel-dialogs.c:1096 ++msgid "Full Width" ++msgstr "Gjerësi e Plotë" ++ ++#: ../panel/panel-dialogs.c:878 ++#: ../panel/panel-dialogs.c:1102 ++msgid "Span Monitors" ++msgstr "" ++ ++#: ../panel/panel-dialogs.c:938 ++#: ../panel/panel-dialogs.c:1167 ++msgid "Left" ++msgstr "Majtas" ++ ++#: ../panel/panel-dialogs.c:940 ++#: ../panel/panel-dialogs.c:1169 ++msgid "Right" ++msgstr "Djathtas" ++ ++#: ../panel/panel-dialogs.c:945 ++#: ../panel/panel-dialogs.c:1174 ++msgid "Top" ++msgstr "Sipër" ++ ++#: ../panel/panel-dialogs.c:947 ++#: ../panel/panel-dialogs.c:1176 ++msgid "Bottom" ++msgstr "Poshtë" ++ ++#. position ++#: ../panel/panel-dialogs.c:975 ++msgid "Position" ++msgstr "Vendndodhje" ++ ++#: ../panel/panel-dialogs.c:989 ++msgid "Fixed Position" ++msgstr "Vendndodhje Fikse" ++ ++#: ../panel/panel-dialogs.c:995 ++msgid "Freely Moveable" ++msgstr "Lirisht i Lëvizshëm" ++ ++#: ../panel/panel-dialogs.c:1110 ++msgid "Auto_hide" ++msgstr "Vetëfshih" ++ ++#: ../panel/panel-dialogs.c:1128 ++#: ../plugins/actions/actions.c:471 ++msgid "Orientation:" ++msgstr "Drejtim:" ++ ++#: ../panel/panel-dialogs.c:1140 ++#: ../plugins/actions/actions.c:484 ++msgid "Horizontal" ++msgstr "Horizontalisht" ++ ++#: ../panel/panel-dialogs.c:1142 ++#: ../plugins/actions/actions.c:485 ++msgid "Vertical" ++msgstr "Vertikalisht" ++ ++#: ../panel/panel-dialogs.c:1151 ++msgid "Handle:" ++msgstr "Trajtues:" ++ ++#: ../panel/panel-dialogs.c:1163 ++msgid "At both sides" ++msgstr "Në të dy anët" ++ ++#: ../panel/panel-dialogs.c:1236 ++msgid "Select Monitor" ++msgstr "Përzgjidhni Monitor" ++ ++#. Button Layout ++#: ../panel/panel-dialogs.c:1354 ++#: ../plugins/clock/clock.c:496 ++#: ../plugins/tasklist/tasklist.c:424 ++#: ../plugins/windowlist/windowlist-dialog.c:190 ++msgid "Appearance" ++msgstr "Dukje" ++ ++#. size ++#: ../panel/panel-dialogs.c:1365 ++msgid "Size (pixels):" ++msgstr "Madhësi (piksela):" ++ ++#: ../panel/panel-dialogs.c:1393 ++msgid "Transparency (%):" ++msgstr "Tejdukshmëri (%):" ++ ++#: ../panel/panel-dialogs.c:1417 ++msgid "Make active panel opaque" ++msgstr "Bëje panelin veprues të marrtë" ++ ++#: ../panel/panel-dialogs.c:1456 ++#: ../panel/panel-dialogs.c:1492 ++#: ../panel/panel-dialogs.c:1517 ++#, c-format ++msgid "Panel %d" ++msgstr "Panel %d" ++ ++#: ../panel/panel-dialogs.c:1536 ++msgid "Remove Panel" ++msgstr "Hiq Panel" ++ ++#: ../panel/panel-dialogs.c:1549 ++msgid "New Panel" ++msgstr "Panel i Ri" ++ ++#: ../panel/panel-dialogs.c:1606 ++#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:2 ++msgid "Panel Manager" ++msgstr "Përgjegjës Panelesh" ++ ++#: ../plugins/actions/actions.c:267 ++#: ../plugins/actions/actions.c:303 ++#: ../plugins/actions/actions.c:459 ++msgid "Lock screen" ++msgstr "Kyç ekranin" ++ ++#: ../plugins/actions/actions.c:419 ++msgid "Panel Actions" ++msgstr "Veprime Paneli" ++ ++#: ../plugins/actions/actions.c:449 ++msgid "Select action type:" ++msgstr "Përzgjidhni tip veprimi" ++ ++#: ../plugins/actions/actions.c:460 ++msgid "Quit + Lock screen" ++msgstr "Dil + Kyç ekranin" ++ ++#. Use format characters from strftime(3) ++#. * to get the proper string for your locale. ++#. * I used these: ++#. * %A : full weekday name ++#. * %d : day of the month ++#. * %B : full month name ++#. * %Y : four digit year ++#. ++#: ../plugins/clock/clock.c:122 ++msgid "%A %d %B %Y" ++msgstr "%A %d %B %Y" ++ ++#: ../plugins/clock/clock.c:481 ++#: ../plugins/clock/clock.desktop.in.in.h:1 ++msgid "Clock" ++msgstr "Orë" ++ ++#. Keep order in sync with XfceClockMode ++#: ../plugins/clock/clock.c:508 ++msgid "Analog" ++msgstr "Analoge" ++ ++#: ../plugins/clock/clock.c:509 ++msgid "Digital" ++msgstr "Shifrore" ++ ++#: ../plugins/clock/clock.c:510 ++msgid "LED" ++msgstr "LED" ++ ++#: ../plugins/clock/clock.c:515 ++#: ../plugins/systray/systray.c:402 ++msgid "Show _frame" ++msgstr "Shfaq _kornizë" ++ ++#: ../plugins/clock/clock.c:522 ++msgid "Clock Options" ++msgstr "Mundësi Ore" ++ ++#: ../plugins/clock/clock.c:530 ++msgid "Use 24-_hour clock" ++msgstr "Përdor orë 24 _orëshe" ++ ++#: ../plugins/clock/clock.c:537 ++msgid "Show AM/PM" ++msgstr "Shfaq AM/PM" ++ ++#: ../plugins/clock/clock.c:544 ++msgid "Display seconds" ++msgstr "Shfaq sekonda" ++ ++#: ../plugins/iconbox/iconbox.c:901 ++#: ../plugins/iconbox/iconbox.desktop.in.in.h:1 ++msgid "Icon Box" ++msgstr "Kuti Ikonash" ++ ++#: ../plugins/iconbox/iconbox.c:926 ++msgid "Only show minimized applications" ++msgstr "Shfaq vetëm zbatime të minimizuara" ++ ++#: ../plugins/iconbox/iconbox.c:935 ++msgid "Show applications of all workspaces" ++msgstr "Shfaq zbatimet në tërë hapësirat e punë" ++ ++#: ../plugins/iconbox/iconbox.c:943 ++#: ../plugins/tasklist/tasklist.c:447 ++msgid "Use all available space" ++msgstr "Përdor tërë hapësirën e mundshme" ++ ++#: ../plugins/launcher/launcher.c:373 ++#: ../plugins/launcher/launcher.c:435 ++#, c-format ++msgid "Could not run \"%s\"" ++msgstr "Nuk xhirova dot \"%s\"" ++ ++#: ../plugins/launcher/launcher.c:398 ++#, c-format ++msgid "Error in command \"%s\"" ++msgstr "Gabim te urdhri \"%s\"" ++ ++#: ../plugins/launcher/launcher.c:675 ++#: ../plugins/launcher/launcher.c:1303 ++#: ../plugins/launcher/launcher-dialog.c:1167 ++msgid "New Item" ++msgstr "Element i Ri" ++ ++#: ../plugins/launcher/launcher.c:1304 ++msgid "This item has not yet been configured" ++msgstr "Ky objekt nuk është formësuar ende" ++ ++#: ../plugins/launcher/launcher-dialog.c:101 ++msgid "Default" ++msgstr "Parazgjedhje" ++ ++#: ../plugins/launcher/launcher-dialog.c:103 ++msgid "File management" ++msgstr "Administrim kartelash" ++ ++#: ../plugins/launcher/launcher-dialog.c:104 ++msgid "Utilities" ++msgstr "Përdorëse" ++ ++#: ../plugins/launcher/launcher-dialog.c:105 ++msgid "Games" ++msgstr "Lojra" ++ ++#: ../plugins/launcher/launcher-dialog.c:106 ++msgid "Help browser" ++msgstr "Shfletues ndihme" ++ ++#: ../plugins/launcher/launcher-dialog.c:107 ++msgid "Multimedia" ++msgstr "Multimedia" ++ ++#: ../plugins/launcher/launcher-dialog.c:108 ++msgid "Network" ++msgstr "Rrjet" ++ ++#: ../plugins/launcher/launcher-dialog.c:109 ++msgid "Graphics" ++msgstr "Grafika" ++ ++#: ../plugins/launcher/launcher-dialog.c:110 ++msgid "Printer" ++msgstr "Shtypës" ++ ++#: ../plugins/launcher/launcher-dialog.c:111 ++msgid "Productivity" ++msgstr "Prodhimtari" ++ ++#: ../plugins/launcher/launcher-dialog.c:112 ++msgid "Office" ++msgstr "Zyrë" ++ ++#: ../plugins/launcher/launcher-dialog.c:113 ++msgid "Sound" ++msgstr "Zë" ++ ++#: ../plugins/launcher/launcher-dialog.c:114 ++msgid "Terminal" ++msgstr "Terminal" ++ ++#: ../plugins/launcher/launcher-dialog.c:115 ++msgid "Development" ++msgstr "Zhvillim" ++ ++#: ../plugins/launcher/launcher-dialog.c:413 ++msgid "Select image file" ++msgstr "Përzgjidhni kartelë pamjeje" ++ ++#: ../plugins/launcher/launcher-dialog.c:459 ++msgid "Select command" ++msgstr "Përzgjidhni urdhër" ++ ++#: ../plugins/launcher/launcher-dialog.c:482 ++msgid "Name" ++msgstr "Emër" ++ ++#: ../plugins/launcher/launcher-dialog.c:500 ++msgid "Description" ++msgstr "Përshkrim" ++ ++#: ../plugins/launcher/launcher-dialog.c:555 ++msgid "Other..." ++msgstr "Tjetër..." ++ ++#: ../plugins/launcher/launcher-dialog.c:653 ++msgid "Command" ++msgstr "Urdhër" ++ ++#: ../plugins/launcher/launcher-dialog.c:689 ++msgid "Run in _terminal" ++msgstr "Xhiroje në t_erminal" ++ ++#: ../plugins/launcher/launcher-dialog.c:707 ++msgid "Use _startup notification" ++msgstr "Përdor _njoftime nisjesh" ++ ++#: ../plugins/launcher/launcher-dialog.c:1289 ++msgid "The first item in the list is shown on the panel. Additional items will appear in a menu." ++msgstr "Elementi i parë në listë tregohet te paneli. Elementë shtesë do të duken në një menu." ++ ++#: ../plugins/launcher/launcher-dialog.c:1332 ++msgid "Program Launcher" ++msgstr "Nisës Programesh" ++ ++#: ../plugins/launcher/launcher-dialog.c:1420 ++#: ../plugins/launcher/launcher-dialog.c:1521 ++#, c-format ++msgid "" ++"Failed to run 0launch:\n" ++"%s\n" ++"\n" ++"For help using Zero Install, see http://0install.net" ++msgstr "" ++"Dështova në xhirimin e 0launch:\n" ++"%s\n" ++"\n" ++"Për ndihmë në përdorimin e Instalimit Zero, shihni http://0install.net" ++ ++#: ../plugins/launcher/launcher-dialog.c:1486 ++msgid "The Zero Install GUI has finished, but the launcher dialog has disappeared in the meantime. Not adding launcher (but any files downloaded have not been lost)." ++msgstr "GUI Instalim Zero përfundoi punën e vet, por dialogu nisës ndërkohë është zhdukur. Nuk po shtoj nisës (por asnjë kartelë e shkarkuar nuk ka humbur)." ++ ++#: ../plugins/launcher/launcher-dialog.c:1899 ++msgid "Select file" ++msgstr "Përzgjidhni kartelë" ++ ++#: ../plugins/pager/pager.c:338 ++#: ../plugins/pager/pager.desktop.in.in.h:2 ++msgid "Pager" ++msgstr "Faques" ++ ++#: ../plugins/pager/pager.c:369 ++msgid "Number of rows:" ++msgstr "Numër rreshtash:" ++ ++#: ../plugins/pager/pager.c:373 ++msgid "Number of columns:" ++msgstr "Numër shtyllash:" ++ ++#: ../plugins/pager/pager.c:399 ++msgid "Switch workspaces using the mouse wheel" ++msgstr "Këmbe hapësira pune duke përdorur rrotëz miu" ++ ++#: ../plugins/separator/separator.c:255 ++#: ../plugins/separator/separator.desktop.in.in.h:2 ++msgid "Separator or Spacing" ++msgstr "Ndarës ose Hapësirë" ++ ++#: ../plugins/separator/separator.c:279 ++msgid "_Draw Separator" ++msgstr "_Vizato Ndarës" ++ ++#: ../plugins/separator/separator.c:288 ++msgid "_Expand" ++msgstr "_Zgjero" ++ ++#: ../plugins/showdesktop/showdesktop.c:32 ++msgid "Restore hidden windows" ++msgstr "Rikthe dritare të fshehura" ++ ++#: ../plugins/showdesktop/showdesktop.c:33 ++msgid "Hide windows and show desktop" ++msgstr "Fshih dritare dhe shfaq desktopë" ++ ++#: ../plugins/systray/systray.c:69 ++#: ../plugins/systray/systray.c:84 ++msgid "There is already a system tray running on this screen" ++msgstr "Ka tashmë një shtyllë sistemi që xhiron në këtë ekran" ++ ++#: ../plugins/systray/systray.c:90 ++#, c-format ++msgid "Unable to register system tray: %s" ++msgstr "I pazoti tëregjistroj shtyllë sistemi: %s" ++ ++#: ../plugins/systray/systray.c:378 ++#: ../plugins/systray/systray.desktop.in.in.h:2 ++msgid "System Tray" ++msgstr "Shtyllë Sistemi" ++ ++#: ../plugins/tasklist/tasklist.c:396 ++#: ../plugins/tasklist/tasklist.c:469 ++#: ../plugins/tasklist/tasklist.desktop.in.in.h:2 ++msgid "Task List" ++msgstr "Listë Veprimesh" ++ ++#: ../plugins/tasklist/tasklist.c:432 ++msgid "Minimum Width:" ++msgstr "Gjerësia Më e Vogël:" ++ ++#: ../plugins/tasklist/tasklist.c:456 ++msgid "Use flat buttons" ++msgstr "Përdor butona të sheshtë" ++ ++#: ../plugins/tasklist/tasklist.c:473 ++msgid "Show tasks from _all workspaces" ++msgstr "Shfaq veprime prej tërë hapësirave të punës" ++ ++#: ../plugins/tasklist/tasklist.c:483 ++msgid "Show application _names" ++msgstr "Shfaq _emra zbatimesh" ++ ++#: ../plugins/tasklist/tasklist.c:497 ++msgid "Never group tasks" ++msgstr "Mos grupo kurrë akte" ++ ++#: ../plugins/tasklist/tasklist.c:500 ++msgid "Automatically group tasks" ++msgstr "Grup akte vetvetiu" ++ ++#: ../plugins/tasklist/tasklist.c:503 ++msgid "Always group tasks" ++msgstr "Grupo akte përherë" ++ ++#: ../plugins/windowlist/windowlist.c:242 ++#, c-format ++msgid "Are you sure you want to remove workspace %d?" ++msgstr "Jeni i sigurt se doni të hiqet hapësira e punës %d?" ++ ++#: ../plugins/windowlist/windowlist.c:243 ++#, c-format ++msgid "Are you sure you want to remove workspace '%s'?" ++msgstr "Jeni i sigurt se doni të hiqet hapësira e punës '%s'?" ++ ++#: ../plugins/windowlist/windowlist.c:508 ++#, c-format ++msgid "Workspace %d" ++msgstr "Hapësirë pune %d" ++ ++#: ../plugins/windowlist/windowlist.c:619 ++#: ../plugins/windowlist/windowlist.c:625 ++msgid "Add workspace" ++msgstr "Shto hapësirë pune" ++ ++#: ../plugins/windowlist/windowlist.c:644 ++#, c-format ++msgid "Remove Workspace %d" ++msgstr "Hiq Hapësirë pune %d" ++ ++#: ../plugins/windowlist/windowlist.c:645 ++#, c-format ++msgid "Remove Workspace '%s'" ++msgstr "Hiq Hapësirë pune '%s'" ++ ++#. Windowlist Settings ++#: ../plugins/windowlist/windowlist-dialog.c:121 ++#: ../plugins/windowlist/windowlist-dialog.c:212 ++#: ../plugins/windowlist/windowlist.desktop.in.in.h:2 ++msgid "Window List" ++msgstr "Listë Dritareje" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:150 ++msgid "Urgency notification will blink the button when an application needs attention." ++msgstr "Njoftimi i urgjencës do të xixëllojë butonin kur një zbatim lyp vëmendje." ++ ++#. Button Urgency Notification ++#: ../plugins/windowlist/windowlist-dialog.c:157 ++msgid "Urgency Notification" ++msgstr "Njoftime Urgjencash" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:164 ++msgid "_Disabled" ++msgstr "_Çaktivizuar" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:173 ++msgid "For _other workspaces" ++msgstr "Për hapësira të _tjera pune" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:182 ++msgid "For _all workspaces" ++msgstr "Për _tërë hapësirat e punës" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:196 ++msgid "_Icon button" ++msgstr "Buton _Ikone" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:203 ++msgid "A_rrow button" ++msgstr "Buton _shigjetë" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:221 ++msgid "Show _windows from all workspaces" ++msgstr "Shfaq _dritare prej tërë hapësirave të punës" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:230 ++msgid "Show a_pplication icons" ++msgstr "Shfaq ikona _zbatimesh" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:239 ++msgid "Show wor_kspace actions" ++msgstr "Shfaq veprime hapësire pune" ++ ++#: ../mcs-plugin/plugin.c:46 ++msgid "Panel" ++msgstr "Panel" ++ ++#: ../plugins/actions/actions.desktop.in.in.h:1 ++msgid "Action Buttons" ++msgstr "Butona Veprimesh" ++ ++#: ../plugins/actions/actions.desktop.in.in.h:2 ++msgid "Log out or lock the screen" ++msgstr "Dil ose kyç ekranin" ++ ++#: ../plugins/clock/clock.desktop.in.in.h:2 ++msgid "What time is it?" ++msgstr "Sa është ora?" ++ ++#: ../plugins/iconbox/iconbox.desktop.in.in.h:2 ++msgid "Show icons of all running applications" ++msgstr "Shfaq ikonat e tërë zbatimeve që xhirojnë" ++ ++#: ../plugins/launcher/launcher.desktop.in.in.h:1 ++msgid "Launcher" ++msgstr "Nisës" ++ ++#: ../plugins/launcher/launcher.desktop.in.in.h:2 ++msgid "Program launcher with optional menu" ++msgstr "Nisës programi me menu opsionale" ++ ++#: ../plugins/pager/pager.desktop.in.in.h:1 ++msgid "Miniature view of all virtual desktops" ++msgstr "Pamje miniaturë e tërë desktopëve virtualë" ++ ++#: ../plugins/separator/separator.desktop.in.in.h:1 ++msgid "Adds a space or a line between panel items" ++msgstr "Shto hapësirë ose vijë midis elementësh paneli" ++ ++#: ../plugins/showdesktop/showdesktop.desktop.in.in.h:1 ++msgid "Show Desktop" ++msgstr "Shfaq Desktop" ++ ++#: ../plugins/showdesktop/showdesktop.desktop.in.in.h:2 ++msgid "Toggle desktop show/hide" ++msgstr "Këmbe shfaqjen/fshehjen e desktopit" ++ ++#: ../plugins/systray/systray.desktop.in.in.h:1 ++msgid "Show notification icons" ++msgstr "Shfaq ikona njoftimesh" ++ ++#: ../plugins/tasklist/tasklist.desktop.in.in.h:1 ++msgid "Show all running applications" ++msgstr "Shfaq tërë zbatimet xhirues" ++ ++#: ../plugins/windowlist/windowlist.desktop.in.in.h:1 ++msgid "Show list of available windows" ++msgstr "Shfaq listë dritaresh të mundshme" ++ ++#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:3 ++msgid "Xfce 4 Panel Manager" ++msgstr "Panel Rregullimesh Xfce 4" ++ +diff -Naur xfce4-panel-4.4.2/po/ur.po xfce4-panel-4.4.2/po.new/ur.po +--- xfce4-panel-4.4.2/po/ur.po 1970-01-01 01:00:00.000000000 +0100 ++++ xfce4-panel-4.4.2/po.new/ur.po 2008-10-19 23:11:07.000000000 +0200 +@@ -0,0 +1,914 @@ ++# translation of xfce4-panel.po to urdu ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the PACKAGE package. ++# ++# Muhammad Ali Makki , 2007. ++msgid "" ++msgstr "" ++"Project-Id-Version: xfce4-panel\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2007-03-27 15:28+0200\n" ++"PO-Revision-Date: 2008-02-23 20:27+0100\n" ++"Last-Translator: Muhammad Ali Makki \n" ++"Language-Team: urdu \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Poedit-Language: Urdu\n" ++"X-Poedit-Country: PAKISTAN\n" ++"X-Poedit-SourceCharset: utf-8\n" ++"X-Generator: KBabel 1.11.4\n" ++ ++#: ../config/launcher-7.rc.in.h:1 ++msgid "Command Prompt" ++msgstr "کمانڈ پرمپٹ" ++ ++#: ../config/launcher-7.rc.in.h:2 ++msgid "X terminal emulator" ++msgstr "ایکس ٹرمنل ایمولیٹر" ++ ++#: ../config/launcher-8.rc.in.h:1 ++msgid "Edit text files" ++msgstr "متن فائلیں مدون کریں" ++ ++#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102 ++msgid "Editor" ++msgstr "مدون" ++ ++#: ../config/launcher-9.rc.in.h:1 ++msgid "File Manager" ++msgstr "فائل منیجر" ++ ++#: ../config/launcher-9.rc.in.h:2 ++msgid "Manage files and folders" ++msgstr "فائلوں اور فولڈروں کی ادارت کریں" ++ ++#: ../config/launcher-10.rc.in.h:1 ++msgid "Surf the internet" ++msgstr "انٹرنیٹ سرف کریں" ++ ++#: ../config/launcher-10.rc.in.h:2 ++msgid "Web Browser" ++msgstr "ویب براؤزر" ++ ++#. dialogs are annoying, just spit out a warning ++#: ../libxfce4panel/xfce-panel-external-item.c:182 ++#, c-format ++msgid "An item was unexpectedly removed: \"%s\"." ++msgstr "عنصر غیر متوقع طور پر حذف: \"%s\"." ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:584 ++#, c-format ++msgid "Remove \"%s\"?" ++msgstr "حذف کریں \"%s\"؟" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:599 ++msgid "" ++"The item will be removed from the panel and its configuration will be lost." ++msgstr "عنصر پینل سے حذف کردیا جائے گا اور اس کی ترتیبات ضائع ہوجائیں گی." ++ ++#. configure, hide by default ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:788 ++msgid "Properties" ++msgstr "خصوصیات" ++ ++#. about item, hide by default ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:805 ++msgid "About" ++msgstr "بابت" ++ ++#. move ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:817 ++msgid "Move" ++msgstr "منتقل" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:837 ++msgid "Remove" ++msgstr "حذف" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:854 ++msgid "Add New Item" ++msgstr "نیا عنصر شامل کریں" ++ ++#: ../libxfce4panel/xfce-panel-plugin-iface.c:866 ../panel/panel.c:697 ++#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:1 ++msgid "Customize Panel" ++msgstr "پینل کسٹمائز کریں" ++ ++#: ../panel/panel.c:708 ++msgid "Add Items" ++msgstr "عنصر شامل کریں" ++ ++#: ../panel/panel.c:724 ../plugins/actions/actions.c:286 ++#: ../plugins/actions/actions.c:320 ../plugins/actions/actions.c:458 ++msgid "Quit" ++msgstr "برخاست" ++ ++#: ../panel/panel.c:734 ++msgid "Restart" ++msgstr "پھر چلائیں" ++ ++#: ../panel/panel.c:748 ++msgid "About the Xfce Panel" ++msgstr "ایکسفس پینل کی بابت" ++ ++#: ../panel/panel-app.c:238 ../panel/panel-app.c:876 ++msgid "Exit Xfce Panel?" ++msgstr "ایکسفس پینل برخاست کریں؟" ++ ++#: ../panel/panel-app.c:874 ../panel/panel-app.c:906 ../panel/panel-app.c:940 ++#: ../plugins/launcher/launcher.c:375 ../plugins/launcher/launcher.c:401 ++#: ../plugins/launcher/launcher.c:437 ++msgid "Xfce Panel" ++msgstr "ایکسفس پینل" ++ ++#: ../panel/panel-app.c:877 ++msgid "You can't remove the last panel. Would you like to exit the program?" ++msgstr "آپ آخری پینل کو حذف نہیں کرسکتے. کیا آپ پروگرام بند کرنا چاہتے ہیں؟" ++ ++#: ../panel/panel-app.c:904 ++#, c-format ++msgid "Remove Panel \"%d\"?" ++msgstr "پینل \"%d\" حذف کریں؟" ++ ++#: ../panel/panel-app.c:908 ++msgid "The selected panel and all its items will be removed." ++msgstr "منتخب پینل اور اس کے تمام عناصر حذف کردیے جائیں گے." ++ ++#: ../panel/panel-app.c:947 ../panel/panel-app.c:950 ++msgid "Developer" ++msgstr "ڈویلپر" ++ ++#: ../panel/main.c:46 ++#, c-format ++msgid "" ++"\n" ++" Xfce Panel %s\n" ++"\n" ++" Part of the Xfce Desktop Environment\n" ++" http://www.xfce.org\n" ++"\n" ++" Licensed under the GNU GPL.\n" ++"\n" ++msgstr "" ++ ++#: ../panel/main.c:52 ++#, c-format ++msgid "" ++" Usage: %s [OPTIONS]\n" ++"\n" ++msgstr "" ++ ++#. Only translate the descriptions, not the options itself ++#: ../panel/main.c:55 ++msgid "" ++" OPTIONS\n" ++" -h, --help Show this message and exit\n" ++" -v, --version Show this message and exit\n" ++" -c, --customize Show configuration dialog\n" ++" -s, --save Save configuration\n" ++" -r, --restart Restart panels\n" ++" -q, --quit End the session\n" ++" -x, --exit Close all panels and end the program\n" ++" -a, --add Add new items\n" ++"\n" ++msgstr "" ++ ++#: ../panel/panel-dialogs.c:184 ++#, c-format ++msgid "Could not open \"%s\" module" ++msgstr "ماڈیول \"%s\" نہیں کھولا جاسکا" ++ ++#: ../panel/panel-dialogs.c:597 ++msgid "Add Items to the Panel" ++msgstr "پینل میں عنصر شامل کریں" ++ ++#: ../panel/panel-dialogs.c:627 ++msgid "" ++"Drag items from the list to a panel or remove them by dragging them back to " ++"the list." ++msgstr "" ++"فہرست میں سے عناصر کو پینل میں گھسیٹیں یا انہیں حذف کرنے کے لیے واپس فہرسٹ " ++"میں گھسیٹیں." ++ ++#: ../panel/panel-dialogs.c:644 ++msgid "Available Items" ++msgstr "دستیاب عناصر" ++ ++#: ../panel/panel-dialogs.c:870 ../panel/panel-dialogs.c:1094 ++msgid "Normal Width" ++msgstr "سادہ چوڑائی" ++ ++#: ../panel/panel-dialogs.c:872 ../panel/panel-dialogs.c:1096 ++msgid "Full Width" ++msgstr "فل چوڑائی" ++ ++#: ../panel/panel-dialogs.c:878 ../panel/panel-dialogs.c:1102 ++msgid "Span Monitors" ++msgstr "Span مانیٹرز" ++ ++#: ../panel/panel-dialogs.c:938 ../panel/panel-dialogs.c:1167 ++msgid "Left" ++msgstr "بائیں" ++ ++#: ../panel/panel-dialogs.c:940 ../panel/panel-dialogs.c:1169 ++msgid "Right" ++msgstr "دائیں" ++ ++#: ../panel/panel-dialogs.c:945 ../panel/panel-dialogs.c:1174 ++msgid "Top" ++msgstr "اوپر" ++ ++#: ../panel/panel-dialogs.c:947 ../panel/panel-dialogs.c:1176 ++msgid "Bottom" ++msgstr "نیچے" ++ ++#. position ++#: ../panel/panel-dialogs.c:975 ++msgid "Position" ++msgstr "مقام" ++ ++#: ../panel/panel-dialogs.c:989 ++msgid "Fixed Position" ++msgstr "فکس مقام" ++ ++#: ../panel/panel-dialogs.c:995 ++msgid "Freely Moveable" ++msgstr "آزادی سے قابل حرکت" ++ ++#: ../panel/panel-dialogs.c:1110 ++msgid "Auto_hide" ++msgstr "خ_ودکار چھپائیں" ++ ++#: ../panel/panel-dialogs.c:1128 ../plugins/actions/actions.c:471 ++msgid "Orientation:" ++msgstr "جہتیابی:" ++ ++#: ../panel/panel-dialogs.c:1140 ../plugins/actions/actions.c:484 ++msgid "Horizontal" ++msgstr "افقی" ++ ++#: ../panel/panel-dialogs.c:1142 ../plugins/actions/actions.c:485 ++msgid "Vertical" ++msgstr "عمودی" ++ ++#: ../panel/panel-dialogs.c:1151 ++msgid "Handle:" ++msgstr "ہینڈل:" ++ ++#: ../panel/panel-dialogs.c:1163 ++msgid "At both sides" ++msgstr "دونوں اطراف" ++ ++#: ../panel/panel-dialogs.c:1236 ++msgid "Select Monitor" ++msgstr "مانیٹر منتخب کریں" ++ ++#. Button Layout ++#: ../panel/panel-dialogs.c:1354 ../plugins/clock/clock.c:496 ++#: ../plugins/tasklist/tasklist.c:424 ++#: ../plugins/windowlist/windowlist-dialog.c:190 ++msgid "Appearance" ++msgstr "مظہر" ++ ++#. size ++#: ../panel/panel-dialogs.c:1365 ++msgid "Size (pixels):" ++msgstr "حجم (پکسل):" ++ ++#: ../panel/panel-dialogs.c:1393 ++msgid "Transparency (%):" ++msgstr "شفافیت (%):" ++ ++#: ../panel/panel-dialogs.c:1417 ++msgid "Make active panel opaque" ++msgstr "فعال پینل کو معتم کردیں" ++ ++#: ../panel/panel-dialogs.c:1456 ../panel/panel-dialogs.c:1492 ++#: ../panel/panel-dialogs.c:1517 ++#, c-format ++msgid "Panel %d" ++msgstr "پینل %d" ++ ++#: ../panel/panel-dialogs.c:1536 ++msgid "Remove Panel" ++msgstr "پینل حذف کریں" ++ ++#: ../panel/panel-dialogs.c:1549 ++msgid "New Panel" ++msgstr "نیا پینل" ++ ++#: ../panel/panel-dialogs.c:1606 ++#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:2 ++msgid "Panel Manager" ++msgstr "پینل منیجر" ++ ++#: ../plugins/actions/actions.c:267 ../plugins/actions/actions.c:303 ++#: ../plugins/actions/actions.c:459 ++msgid "Lock screen" ++msgstr "سکرین لاک کریں" ++ ++#: ../plugins/actions/actions.c:419 ++msgid "Panel Actions" ++msgstr "پینل حرکات" ++ ++#: ../plugins/actions/actions.c:449 ++msgid "Select action type:" ++msgstr "حرکت کی قسم منتخب کریں:" ++ ++#: ../plugins/actions/actions.c:460 ++msgid "Quit + Lock screen" ++msgstr "برخاست + سکرین مقفل" ++ ++#. Use format characters from strftime(3) ++#. * to get the proper string for your locale. ++#. * I used these: ++#. * %A : full weekday name ++#. * %d : day of the month ++#. * %B : full month name ++#. * %Y : four digit year ++#. ++#: ../plugins/clock/clock.c:122 ++msgid "%A %d %B %Y" ++msgstr "" ++ ++#: ../plugins/clock/clock.c:481 ../plugins/clock/clock.desktop.in.in.h:1 ++msgid "Clock" ++msgstr "گھڑی" ++ ++#. Keep order in sync with XfceClockMode ++#: ../plugins/clock/clock.c:508 ++msgid "Analog" ++msgstr "تناظری" ++ ++#: ../plugins/clock/clock.c:509 ++msgid "Digital" ++msgstr "رقمی" ++ ++#: ../plugins/clock/clock.c:510 ++#, fuzzy ++msgid "LED" ++msgstr "LCD" ++ ++#: ../plugins/clock/clock.c:515 ../plugins/systray/systray.c:402 ++msgid "Show _frame" ++msgstr "ف_ریم دکھائیں" ++ ++#: ../plugins/clock/clock.c:522 ++msgid "Clock Options" ++msgstr "گھڑی اختیارات" ++ ++#: ../plugins/clock/clock.c:530 ++msgid "Use 24-_hour clock" ++msgstr "24 گ_ھنٹے گھڑی استعمال کریں" ++ ++#: ../plugins/clock/clock.c:537 ++#, fuzzy ++msgid "Show AM/PM" ++msgstr "AM/PM د_کھائیں" ++ ++#: ../plugins/clock/clock.c:544 ++#, fuzzy ++msgid "Display seconds" ++msgstr "_ڈسپلے سیکنڈ" ++ ++#: ../plugins/iconbox/iconbox.c:901 ++#: ../plugins/iconbox/iconbox.desktop.in.in.h:1 ++msgid "Icon Box" ++msgstr "آئکن بکس" ++ ++#: ../plugins/iconbox/iconbox.c:926 ++msgid "Only show minimized applications" ++msgstr "صرف منمائزڈ اطلاقیے دکھائیں" ++ ++#: ../plugins/iconbox/iconbox.c:935 ++msgid "Show applications of all workspaces" ++msgstr "تمام ورک سپیس کے اطلاقیے دکھائیں" ++ ++#: ../plugins/iconbox/iconbox.c:943 ../plugins/tasklist/tasklist.c:447 ++msgid "Use all available space" ++msgstr "تمام دستیاب خلا استعمال کریں" ++ ++#: ../plugins/launcher/launcher.c:373 ../plugins/launcher/launcher.c:435 ++#, fuzzy, c-format ++msgid "Could not run \"%s\"" ++msgstr "ماڈیول \"%s\" نہیں کھولا جاسکا" ++ ++#: ../plugins/launcher/launcher.c:398 ++#, c-format ++msgid "Error in command \"%s\"" ++msgstr "" ++ ++#: ../plugins/launcher/launcher.c:675 ../plugins/launcher/launcher.c:1303 ++#: ../plugins/launcher/launcher-dialog.c:1167 ++msgid "New Item" ++msgstr "نیا عنصر" ++ ++#: ../plugins/launcher/launcher.c:1304 ++msgid "This item has not yet been configured" ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:101 ++msgid "Default" ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:103 ++#, fuzzy ++msgid "File management" ++msgstr "فائل منیجر" ++ ++#: ../plugins/launcher/launcher-dialog.c:104 ++msgid "Utilities" ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:105 ++#, fuzzy ++msgid "Games" ++msgstr "_نام" ++ ++#: ../plugins/launcher/launcher-dialog.c:106 ++#, fuzzy ++msgid "Help browser" ++msgstr "ویب براؤزر" ++ ++#: ../plugins/launcher/launcher-dialog.c:107 ++msgid "Multimedia" ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:108 ++msgid "Network" ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:109 ++msgid "Graphics" ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:110 ++msgid "Printer" ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:111 ++msgid "Productivity" ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:112 ++msgid "Office" ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:113 ++msgid "Sound" ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:114 ++#, fuzzy ++msgid "Terminal" ++msgstr "عمودی" ++ ++#: ../plugins/launcher/launcher-dialog.c:115 ++#, fuzzy ++msgid "Development" ++msgstr "ڈویلپر" ++ ++#: ../plugins/launcher/launcher-dialog.c:413 ++#, fuzzy ++msgid "Select image file" ++msgstr "ڈائریکٹری منتخب کریں" ++ ++#: ../plugins/launcher/launcher-dialog.c:459 ++#, fuzzy ++msgid "Select command" ++msgstr "مانیٹر منتخب کریں" ++ ++#: ../plugins/launcher/launcher-dialog.c:482 ++#, fuzzy ++msgid "Name" ++msgstr "_نام" ++ ++#: ../plugins/launcher/launcher-dialog.c:500 ++#, fuzzy ++msgid "Description" ++msgstr "_تفصیل" ++ ++#: ../plugins/launcher/launcher-dialog.c:555 ++msgid "Other..." ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:653 ++#, fuzzy ++msgid "Command" ++msgstr "_کمانڈ" ++ ++#: ../plugins/launcher/launcher-dialog.c:689 ++msgid "Run in _terminal" ++msgstr "ٹرمنل میں چلا_ئیں" ++ ++#: ../plugins/launcher/launcher-dialog.c:707 ++#, fuzzy ++msgid "Use _startup notification" ++msgstr "ابتدائیہ اطلاع استعمال کریں" ++ ++#: ../plugins/launcher/launcher-dialog.c:1289 ++msgid "" ++"The first item in the list is shown on the panel. Additional items will " ++"appear in a menu." ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:1332 ++msgid "Program Launcher" ++msgstr "پروگرام لاؤنچر" ++ ++#: ../plugins/launcher/launcher-dialog.c:1420 ++#: ../plugins/launcher/launcher-dialog.c:1521 ++#, c-format ++msgid "" ++"Failed to run 0launch:\n" ++"%s\n" ++"\n" ++"For help using Zero Install, see http://0install.net" ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:1486 ++msgid "" ++"The Zero Install GUI has finished, but the launcher dialog has disappeared " ++"in the meantime. Not adding launcher (but any files downloaded have not been " ++"lost)." ++msgstr "" ++ ++#: ../plugins/launcher/launcher-dialog.c:1899 ++#, fuzzy ++msgid "Select file" ++msgstr "مانیٹر منتخب کریں" ++ ++#: ../plugins/pager/pager.c:338 ../plugins/pager/pager.desktop.in.in.h:2 ++msgid "Pager" ++msgstr "پیجر" ++ ++#: ../plugins/pager/pager.c:369 ++msgid "Number of rows:" ++msgstr "صفوں کی تعداد:" ++ ++#: ../plugins/pager/pager.c:373 ++msgid "Number of columns:" ++msgstr "کالموں کی تعداد:" ++ ++#: ../plugins/pager/pager.c:399 ++msgid "Switch workspaces using the mouse wheel" ++msgstr "ماؤس کے پہیہ سے ورک سپیس کے درمیان منتقلی" ++ ++#: ../plugins/separator/separator.c:255 ++#: ../plugins/separator/separator.desktop.in.in.h:2 ++msgid "Separator or Spacing" ++msgstr "جداگار یا خلا" ++ ++#: ../plugins/separator/separator.c:279 ++#, fuzzy ++msgid "_Draw Separator" ++msgstr "جداگار کا انداز" ++ ++#: ../plugins/separator/separator.c:288 ++msgid "_Expand" ++msgstr "" ++ ++#: ../plugins/showdesktop/showdesktop.c:32 ++msgid "Restore hidden windows" ++msgstr "چھپی ونڈوز ری سٹور کریں" ++ ++#: ../plugins/showdesktop/showdesktop.c:33 ++msgid "Hide windows and show desktop" ++msgstr "ونڈوز چھپاکر ڈیسک ٹاپ دکھائیں" ++ ++#: ../plugins/systray/systray.c:69 ../plugins/systray/systray.c:84 ++msgid "There is already a system tray running on this screen" ++msgstr "اس سکرین میں پہلے ہیں نظام ٹرے چل رہی ہے" ++ ++#: ../plugins/systray/systray.c:90 ++#, c-format ++msgid "Unable to register system tray: %s" ++msgstr "نظام ٹرے رجسٹر کرنے نہیں ہوسکی: %s" ++ ++#: ../plugins/systray/systray.c:378 ++#: ../plugins/systray/systray.desktop.in.in.h:2 ++msgid "System Tray" ++msgstr "نظام ٹرے" ++ ++#: ../plugins/tasklist/tasklist.c:396 ../plugins/tasklist/tasklist.c:469 ++#: ../plugins/tasklist/tasklist.desktop.in.in.h:2 ++msgid "Task List" ++msgstr "ٹاسک فہرست" ++ ++#: ../plugins/tasklist/tasklist.c:432 ++msgid "Minimum Width:" ++msgstr "کم سے کم چوڑائی:" ++ ++#: ../plugins/tasklist/tasklist.c:456 ++msgid "Use flat buttons" ++msgstr "فلیٹ بٹن استعمال کریں" ++ ++#: ../plugins/tasklist/tasklist.c:473 ++#, fuzzy ++msgid "Show tasks from _all workspaces" ++msgstr "تمام ورک سپیس کی ٹاسک دکھائیں" ++ ++#: ../plugins/tasklist/tasklist.c:483 ++msgid "Show application _names" ++msgstr "اطلاقیوں کے نام _ظاہر کریں" ++ ++#: ../plugins/tasklist/tasklist.c:497 ++msgid "Never group tasks" ++msgstr "ٹاسک گروپ مت کریں" ++ ++#: ../plugins/tasklist/tasklist.c:500 ++msgid "Automatically group tasks" ++msgstr "خودکار ٹاسک گروپ کریں" ++ ++#: ../plugins/tasklist/tasklist.c:503 ++msgid "Always group tasks" ++msgstr "ہمیشہ ٹاسک گروپ کریں" ++ ++#: ../plugins/windowlist/windowlist.c:242 ++#, c-format ++msgid "Are you sure you want to remove workspace %d?" ++msgstr "کیا آپ واقعی ورک سپیس %d کو حذف کرنا چاہتے ہیں؟" ++ ++#: ../plugins/windowlist/windowlist.c:243 ++#, c-format ++msgid "Are you sure you want to remove workspace '%s'?" ++msgstr "کیا آپ واقعی ورک سپیس '%s' کو حذف کرنا چاہتے ہیں؟" ++ ++#: ../plugins/windowlist/windowlist.c:508 ++#, c-format ++msgid "Workspace %d" ++msgstr "ورک سپیس %d" ++ ++#: ../plugins/windowlist/windowlist.c:619 ++#: ../plugins/windowlist/windowlist.c:625 ++msgid "Add workspace" ++msgstr "ورک سپیس کا اضافہ کریں" ++ ++#: ../plugins/windowlist/windowlist.c:644 ++#, c-format ++msgid "Remove Workspace %d" ++msgstr "ورک سپیس %d حذف کریں" ++ ++#: ../plugins/windowlist/windowlist.c:645 ++#, c-format ++msgid "Remove Workspace '%s'" ++msgstr "ورک سپیس '%s' حذف کریں" ++ ++#. Windowlist Settings ++#: ../plugins/windowlist/windowlist-dialog.c:121 ++#: ../plugins/windowlist/windowlist-dialog.c:212 ++#: ../plugins/windowlist/windowlist.desktop.in.in.h:2 ++msgid "Window List" ++msgstr "ونڈو فہرست" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:150 ++msgid "" ++"Urgency notification will blink the button when an application needs " ++"attention." ++msgstr "" ++"ایمرجنسی اطلاع جب اطلاقیے کو توجہ کی ظرورت ہوگی بٹن بلنک کیا جائے گا" ++ ++#. Button Urgency Notification ++#: ../plugins/windowlist/windowlist-dialog.c:157 ++msgid "Urgency Notification" ++msgstr "ضروری اطلاع" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:164 ++msgid "_Disabled" ++msgstr "مع_طل شدہ" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:173 ++msgid "For _other workspaces" ++msgstr "برائ_ے دوسری ورک سپیس" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:182 ++msgid "For _all workspaces" ++msgstr "برا_ئے تمام ورک سپیس" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:196 ++msgid "_Icon button" ++msgstr "_آئکن بٹن" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:203 ++msgid "A_rrow button" ++msgstr "_تیر بٹن" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:221 ++msgid "Show _windows from all workspaces" ++msgstr "تمام ور_ک سپیس کی ونڈوز دکھائیں" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:230 ++msgid "Show a_pplication icons" ++msgstr "ا_طلاقیوں کی آئکن ظاہر کریں" ++ ++#: ../plugins/windowlist/windowlist-dialog.c:239 ++msgid "Show wor_kspace actions" ++msgstr "ورک س_پیس کی حرکات ظاہر کریں" ++ ++#: ../mcs-plugin/plugin.c:46 ++msgid "Panel" ++msgstr "پینل" ++ ++#: ../plugins/actions/actions.desktop.in.in.h:1 ++msgid "Action Buttons" ++msgstr "حرکات بٹن" ++ ++#: ../plugins/actions/actions.desktop.in.in.h:2 ++msgid "Log out or lock the screen" ++msgstr "لاگ آؤٹ کریں یا سکرین مقفل کریں" ++ ++#: ../plugins/clock/clock.desktop.in.in.h:2 ++msgid "What time is it?" ++msgstr "کیا وقت ہے؟" ++ ++#: ../plugins/iconbox/iconbox.desktop.in.in.h:2 ++msgid "Show icons of all running applications" ++msgstr "تمام چلتے اطلاقیوں کی آئکن ظاہر کریں" ++ ++#: ../plugins/launcher/launcher.desktop.in.in.h:1 ++msgid "Launcher" ++msgstr "لاؤنچر" ++ ++#: ../plugins/launcher/launcher.desktop.in.in.h:2 ++msgid "Program launcher with optional menu" ++msgstr "پروگرام لاؤنچر بمع اختیاری مینیو" ++ ++#: ../plugins/pager/pager.desktop.in.in.h:1 ++msgid "Miniature view of all virtual desktops" ++msgstr "مصغر منظر برائے تمام ڈیسک ٹاپ" ++ ++#: ../plugins/separator/separator.desktop.in.in.h:1 ++msgid "Adds a space or a line between panel items" ++msgstr "پینل کے عناصر کے درمیان خلا یا لائن شامل کریں" ++ ++#: ../plugins/showdesktop/showdesktop.desktop.in.in.h:1 ++msgid "Show Desktop" ++msgstr "ڈیسک ٹاپ دکھائیں" ++ ++#: ../plugins/showdesktop/showdesktop.desktop.in.in.h:2 ++msgid "Toggle desktop show/hide" ++msgstr "ڈیسک ٹاپ ظاہر کریں/چھپائیں" ++ ++#: ../plugins/systray/systray.desktop.in.in.h:1 ++msgid "Show notification icons" ++msgstr "اطلاعی آئکنز دکھائیں" ++ ++#: ../plugins/tasklist/tasklist.desktop.in.in.h:1 ++msgid "Show all running applications" ++msgstr "تمام چلے اطلاقیے ظاہر کریں" ++ ++#: ../plugins/windowlist/windowlist.desktop.in.in.h:1 ++msgid "Show list of available windows" ++msgstr "دستیاب ونڈوز کی فہرست ظاہر کریں" ++ ++#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:3 ++msgid "Xfce 4 Panel Manager" ++msgstr "ایکسفس 4 پینل منیجر" ++ ++#~ msgid "Show this message and exit" ++#~ msgstr "یہ پیغام دکھاکر برخاست کریں" ++ ++#~ msgid "Show configuration dialog" ++#~ msgstr "تشکیل ڈائلاگ دکھائیں" ++ ++#~ msgid "Save configuration" ++#~ msgstr "تشکیل محفوظ کریں" ++ ++#~ msgid "Restart panels" ++#~ msgstr "پینل پھر چلائیں" ++ ++#~ msgid "End the session" ++#~ msgstr "نشست ختم کریں" ++ ++#~ msgid "Close all panels and end the program" ++#~ msgstr "تمام پینل اور پروگرام بند کریں" ++ ++#~ msgid "Add new items" ++#~ msgstr "نیا عنصر شامل کریں" ++ ++#~ msgid "Failed to open display" ++#~ msgstr "ڈسپلے کھولنے میں ناکامی" ++ ++#~ msgid "Copyright (c) 2004-2007" ++#~ msgstr "کاپی رائٹ (c) 2004-2007" ++ ++#~ msgid "The Xfce development team. All rights reserved." ++#~ msgstr "ایکسفس ترقیاتی ٹیم. تمام حقوق محفوظ ہیں." ++ ++#~ msgid "Please report bugs to <%s>." ++#~ msgstr "برائے مہربانی بگ رپورٹ کریں <%s>." ++ ++#~ msgid "xfce4-panel already running" ++#~ msgstr "ایکسفس 4 پینل پہلے ہی چل رہا ہے" ++ ++#~ msgid "Restarting xfce4-panel..." ++#~ msgstr "ایکسفس 4 پینل پھر چلایا جارہا ہے..." ++ ++#~ msgid "Normal Height" ++#~ msgstr "سادہ اونچائی" ++ ++#~ msgid "Full Height" ++#~ msgstr "فل اونچائی" ++ ++#~ msgid "Popup position:" ++#~ msgstr "برخیزہ مقام:" ++ ++#~ msgid "Automatic" ++#~ msgstr "خود کار" ++ ++#~ msgid "Custom" ++#~ msgstr "صوابدیدی" ++ ++#~ msgid "True _binary clock" ++#~ msgstr "حقیقی بائنری گھڑی" ++ ++#~ msgid "Binary" ++#~ msgstr "بائنری" ++ ++#~ msgid "Tooltip Format" ++#~ msgstr "ٹول ٹپ فارمیٹ" ++ ++#~ msgid "Failed to launch \"%s\"" ++#~ msgstr "\"%s\" کو چلانے میں ناکامی" ++ ++#~ msgid "No icon" ++#~ msgstr "بلا آئکن" ++ ++#~ msgid "Select an Application" ++#~ msgstr "اطلاقیہ منتخب کریں" ++ ++#~ msgid "All Files" ++#~ msgstr "تمام فائلیں" ++ ++#~ msgid "Executable Files" ++#~ msgstr "اطلاقی فائلیں" ++ ++#~ msgid "Perl Scripts" ++#~ msgstr "پرل سکرپٹ" ++ ++#~ msgid "Python Scripts" ++#~ msgstr "پائتھن سکرپٹ" ++ ++#~ msgid "Ruby Scripts" ++#~ msgstr "روبی سکرپٹ" ++ ++#~ msgid "Shell Scripts" ++#~ msgstr "شیل سکرپٹ" ++ ++#~ msgid "Unknown" ++#~ msgstr "نا معلوم" ++ ++#~ msgid "Select an Icon for \"%s\"" ++#~ msgstr "\"%s\" کے لیے آئکن منتخب کریں" ++ ++#~ msgid "_Icon" ++#~ msgstr "_آئکن" ++ ++#~ msgid "_Working Directory" ++#~ msgstr "کام کی _ڈائریکٹری" ++ ++#, fuzzy ++#~ msgid "A_rrow:" ++#~ msgstr "_تیر بٹن" ++ ++#, fuzzy ++#~ msgid "Inside Button" ++#~ msgstr "_آئکن بٹن" ++ ++#, fuzzy ++#~ msgid "Show workspace names" ++#~ msgstr "ورک س_پیس کی حرکات ظاہر کریں" ++ ++#~ msgid "_Empty Space" ++#~ msgstr "_خالی خلا" ++ ++#~ msgid "_Expanding Empty Space" ++#~ msgstr "خالی خلا کا پ_ھیلاؤ" ++ ++#~ msgid "_Line" ++#~ msgstr "_لائن" ++ ++#~ msgid "_Handle" ++#~ msgstr "_ہینڈل" ++ ++#~ msgid "_Dots" ++#~ msgstr "_نقطے" ++ ++#, fuzzy ++#~ msgid "Are you sure you want to clear the list of known applications?" ++#~ msgstr "کیا آپ واقعی ورک سپیس '%s' کو حذف کرنا چاہتے ہیں؟" ++ ++#, fuzzy ++#~ msgid "_Number of rows:" ++#~ msgstr "صفوں کی تعداد:" ++ ++#, fuzzy ++#~ msgid "Hidden Applications" ++#~ msgstr "اطلاقیہ منتخب کریں" ++ ++#~ msgid "Show handle" ++#~ msgstr "ہینڈل دکھائیں" ++ ++#~ msgid "Failed to launch 'xfce4-panel -c'" ++#~ msgstr "'xfce4-panel -c' چلانے میں ناکامی" --- xfce4-panel-4.4.2.orig/debian/patches/series +++ xfce4-panel-4.4.2/debian/patches/series @@ -0,0 +1,3 @@ +01_fix-dnd-file-panel.patch +02_fix-screen-config-dialog.patch +99_update_translations.patch --- xfce4-panel-4.4.2.orig/debian/patches/02_fix-screen-config-dialog.patch +++ xfce4-panel-4.4.2/debian/patches/02_fix-screen-config-dialog.patch @@ -0,0 +1,28 @@ +Index: xfce_4_4/plugins/launcher/launcher-dialog.c +=================================================================== +--- xfce_4_4/plugins/launcher/launcher-dialog.c (revision 26936) ++++ xfce_4_4/plugins/launcher/launcher-dialog.c (revision 26937) +@@ -1334,6 +1334,9 @@ + GTK_STOCK_CLOSE, GTK_RESPONSE_OK, + NULL); + ++ gtk_window_set_screen (GTK_WINDOW (ld->dlg), ++ gtk_widget_get_screen (GTK_WIDGET (plugin))); ++ + g_object_set_data (G_OBJECT (plugin), "dialog", ld->dlg); + g_object_set_data (G_OBJECT (plugin), "launcher-dialog", ld); + +Index: xfce_4_4/plugins/pager/pager.c +=================================================================== +--- xfce_4_4/plugins/pager/pager.c (revision 26936) ++++ xfce_4_4/plugins/pager/pager.c (revision 26937) +@@ -340,6 +340,9 @@ + GTK_STOCK_CLOSE, GTK_RESPONSE_OK, + NULL); + ++ gtk_window_set_screen (GTK_WINDOW (dlg), ++ gtk_widget_get_screen (GTK_WIDGET (plugin))); ++ + g_object_set_data (G_OBJECT (plugin), "dialog", dlg); + + gtk_window_set_position (GTK_WINDOW (dlg), GTK_WIN_POS_CENTER); --- xfce4-panel-4.4.2.orig/debian/patches/01_fix-dnd-file-panel.patch +++ xfce4-panel-4.4.2/debian/patches/01_fix-dnd-file-panel.patch @@ -0,0 +1,1086 @@ +Index: xfce_4_4/ChangeLog +=================================================================== +--- xfce_4_4/ChangeLog (revision 26668) ++++ xfce_4_4/ChangeLog (revision 26669) +@@ -1,3 +1,9 @@ ++2008-03-09 19:02 nick ++ ++ * Fix bug 3815 and a crash in FreeBSD-amd64. Quite a lot (if not all) ++ dnd code changed. So give it some testing if you're using the ++ 4.4 branch. ++ + 2007-11-17 17:47 kelnos + + * docs/API/libxfce4panel-decl-list.txt, +Index: xfce_4_4/panel/panel.c +=================================================================== +--- xfce_4_4/panel/panel.c (revision 26668) ++++ xfce_4_4/panel/panel.c (revision 26669) +@@ -87,6 +87,7 @@ + static void panel_menu_deactivated (GtkWidget *item); + + static void panel_menu_opened (GtkWidget *item); ++static void _item_start_move (GtkWidget *item, Panel *panel); + + /* DND dest */ + static void _panel_drag_data_received (GtkWidget *widget, +@@ -110,21 +111,6 @@ + GdkDragContext *drag_context, + Panel *panel); + +-static void _panel_drag_end (GtkWidget *widget, +- GdkDragContext *drag_context, +- Panel *panel); +- +-static void _panel_drag_data_get (GtkWidget *widget, +- GdkDragContext *drag_context, +- GtkSelectionData *data, +- guint info, +- guint time, +- Panel *panel); +- +-static void _panel_drag_data_delete (GtkWidget *widget, +- GdkDragContext *drag_context, +- Panel *panel); +- + /* pass through button press events */ + static gboolean _panel_itembar_button_pressed (GtkWidget *widget, + GdkEventButton *ev, +@@ -255,6 +241,9 @@ + priv->itembar = xfce_itembar_new (GTK_ORIENTATION_HORIZONTAL); + gtk_widget_show (priv->itembar); + gtk_container_add (GTK_CONTAINER (panel), priv->itembar); ++ ++ panel_dnd_set_dest_name_and_widget (priv->itembar); ++ panel_dnd_set_source_widget (priv->itembar); + + /* don't allow the wm to close the panel window */ + g_signal_connect (panel, "delete-event", G_CALLBACK (gtk_true), NULL); +@@ -269,15 +258,6 @@ + g_signal_connect (priv->itembar, "drag-begin", + G_CALLBACK (_panel_drag_begin), panel); + +- g_signal_connect (priv->itembar, "drag-end", +- G_CALLBACK (_panel_drag_end), panel); +- +- g_signal_connect (priv->itembar, "drag-data-get", +- G_CALLBACK (_panel_drag_data_get), panel); +- +- g_signal_connect (priv->itembar, "drag-data-delete", +- G_CALLBACK (_panel_drag_data_delete), panel); +- + /* mouse click */ + g_signal_connect (priv->itembar, "button-press-event", + G_CALLBACK (_panel_itembar_button_pressed), panel); +@@ -441,76 +421,87 @@ + guint time, + Panel *panel) + { +- gboolean handled = FALSE; ++ XfceItembar *itembar = XFCE_ITEMBAR (widget);; ++ PanelPrivate *priv = panel->priv; ++ XfcePanelItem *item; ++ GtkWidget *plugin; ++ gint index; ++ gint oldindex; ++ gboolean expand; ++ gboolean succeed = FALSE; + + DBG (" + drag data received: %d", info); + +- if (data->length > 0) ++ /* get the drop index */ ++ index = xfce_itembar_get_drop_index (itembar, x, y); ++ ++ switch (info) + { +- XfceItembar *itembar; +- PanelPrivate *priv; +- XfcePanelItem *item; +- GtkWidget *plugin; +- int index; +- int oldindex = -1; +- gboolean expand; +- +- itembar = XFCE_ITEMBAR (widget); +- +- switch (info) +- { +- case TARGET_PLUGIN_NAME: +- handled = TRUE; +- index = xfce_itembar_get_drop_index (itembar, x, y); +- panel_insert_item (panel, (const char *)data->data, index); ++ case TARGET_PLUGIN_NAME: ++ if (data->length > 0) ++ { ++ /* insert the new plugin */ ++ panel_insert_item (panel, (const gchar *) data->data, index); ++ ++ /* succeeded */ ++ succeed = TRUE; ++ } ++ break; ++ ++ case TARGET_PLUGIN_WIDGET: ++ /* get the plugin from the drag context */ ++ plugin = gtk_drag_get_source_widget (context); ++ ++ /* try the drag_widget or leave */ ++ if (!plugin || !XFCE_IS_PANEL_ITEM (plugin)) + break; ++ ++ if (gtk_widget_get_parent (plugin) != widget) ++ { ++ /* get the plugin and information */ ++ item = XFCE_PANEL_ITEM (plugin); ++ expand = xfce_panel_item_get_expand (item); + +- case TARGET_PLUGIN_WIDGET: +- plugin = panel_dnd_get_plugin_from_data (data); +- if (!plugin || !GTK_IS_WIDGET (plugin)) +- break; +- +- handled = TRUE; +- index = xfce_itembar_get_drop_index (itembar, x, y); +- +- if (plugin->parent != widget) +- { +- item = XFCE_PANEL_ITEM (plugin); +- expand = xfce_panel_item_get_expand (item); +- priv = panel->priv; +- +- g_object_freeze_notify (G_OBJECT (widget)); ++ /* freeze plugin notifications */ ++ g_object_freeze_notify (G_OBJECT (widget)); ++ ++ /* move the plugin from the old panel to the new one */ ++ gtk_widget_reparent (GTK_WIDGET (plugin), widget); ++ ++ /* update the plugin */ ++ xfce_panel_item_set_size (item, priv->size); ++ xfce_panel_item_set_screen_position (item, priv->screen_position); ++ ++ /* update the itembar */ ++ xfce_itembar_reorder_child (itembar, plugin, index); ++ xfce_itembar_set_child_expand (itembar, plugin, expand); ++ ++ /* thaw update notifications */ ++ g_object_thaw_notify (G_OBJECT (widget)); ++ } ++ else /* move on same panel */ ++ { ++ /* get the old index */ ++ oldindex = xfce_itembar_get_item_index (itembar, plugin); ++ ++ if (index > oldindex) ++ index--; + +- gtk_widget_reparent (GTK_WIDGET (plugin), widget); +- +- xfce_panel_item_set_size (item, priv->size); +- +- xfce_panel_item_set_screen_position (item, +- priv->screen_position); +- ++ if (index != oldindex) + xfce_itembar_reorder_child (itembar, plugin, index); +- +- g_object_thaw_notify (G_OBJECT (widget)); +- +- xfce_itembar_set_child_expand (itembar, plugin, expand); +- } +- else /* only when moving on the same panel */ +- { +- oldindex = xfce_itembar_get_item_index (itembar, plugin); +- +- if (index > oldindex) index--; +- +- if (index != oldindex) +- xfce_itembar_reorder_child (itembar, plugin, index); +- } +- break; +- +- default: +- break; +- } ++ } ++ ++ /* properly handled */ ++ succeed = TRUE; ++ ++ break; ++ ++ default: ++ break; + } +- +- gtk_drag_finish (context, handled, FALSE, time); ++ ++ /* finish the drag */ ++ gtk_drag_finish (context, succeed, FALSE, time); + } + + static gboolean +@@ -521,15 +512,17 @@ + guint time, + Panel *panel) + { +- GdkAtom atom = gtk_drag_dest_find_target (widget, context, NULL); ++ GdkAtom target = gtk_drag_dest_find_target (widget, context, NULL); ++ ++ /* we cannot handle the drag data */ ++ if (G_UNLIKELY (target == GDK_NONE)) ++ return FALSE; + +- if (atom != GDK_NONE) +- { +- gtk_drag_get_data (widget, context, atom, time); +- return TRUE; +- } +- +- return FALSE; ++ /* request the drag data */ ++ gtk_drag_get_data (widget, context, target, time); ++ ++ /* we call gtk_drag_finish later */ ++ return TRUE; + } + + /* DND source */ +@@ -538,112 +531,29 @@ + GdkDragContext *drag_context, + Panel *panel) + { +- int x, y, rootx, rooty, w, h; +- GtkWidget *plugin; +- GdkPixbuf *pb; +- PanelPrivate *priv = panel->priv; +- ++ gint x, y, rootx, rooty; ++ GtkWidget *plugin; ++ + DBG (" + drag begin"); + +- if (priv->drag_widget) +- { +- plugin = priv->drag_widget; +- +- /* allow menu to close, in order to not mess up the snapshot of the +- * plugin -- TODO: find a better way to do this */ +- while (gtk_events_pending ()) +- gtk_main_iteration (); +- } +- else +- { +- x = y = 0; +- gdk_display_get_pointer (gtk_widget_get_display (widget), +- NULL, &x, &y, NULL); +- gdk_window_get_root_origin (widget->window, &rootx, &rooty); +- x -= rootx; +- y -= rooty; +- +- plugin = xfce_itembar_get_item_at_point (XFCE_ITEMBAR (widget), x, y); +- } +- +- if (plugin) +- { +- GdkDrawable *d = GDK_DRAWABLE (plugin->window); +- +- gdk_drawable_get_size (d, &w, &h); +- pb = gdk_pixbuf_get_from_drawable (NULL, d, NULL, 0, 0, 0, 0, w, h); +- gtk_drag_set_icon_pixbuf (drag_context, pb, 0, 0); +- g_object_unref (G_OBJECT (pb)); +- +- priv->drag_widget = plugin; +- } +- else +- DBG ("No Plugin"); ++ /* get the pointer position */ ++ gdk_display_get_pointer (gtk_widget_get_display (widget), NULL, &x, &y, NULL); ++ ++ /* get the window root coordinates */ ++ gdk_window_get_root_origin (widget->window, &rootx, &rooty); ++ ++ /* calc the position inside the panel */ ++ x -= rootx; ++ y -= rooty; ++ ++ /* get the plugin on the itembar at this position */ ++ plugin = xfce_itembar_get_item_at_point (XFCE_ITEMBAR (widget), x, y); ++ ++ /* start an item move */ ++ if (G_LIKELY (plugin)) ++ _item_start_move (plugin, panel); + } + +-static void +-_panel_drag_end (GtkWidget *widget, +- GdkDragContext *drag_context, +- Panel *panel) +-{ +- PanelPrivate *priv = panel->priv; +- +- priv->drag_widget = NULL; +- +- if (!priv->edit_mode) +- { +- const GPtrArray *panels = panel_app_get_panel_list (); +- int i; +- +- for (i = 0; i < panels->len; ++i) +- { +- Panel *p = g_ptr_array_index (panels, i); +- +- priv = p->priv; +- +- xfce_itembar_lower_event_window (XFCE_ITEMBAR (priv->itembar)); +- panel_dnd_unset_dest (priv->itembar); +- panel_dnd_unset_source (priv->itembar); +- panel_set_items_sensitive (p, TRUE); +- +- panel_unblock_autohide (p); +- } +- } +-} +- +-static void +-_panel_drag_data_get (GtkWidget *widget, +- GdkDragContext *drag_context, +- GtkSelectionData *data, +- guint info, +- guint time, +- Panel *panel) +-{ +- if (info == TARGET_PLUGIN_WIDGET) +- { +- PanelPrivate *priv = panel->priv; +- +- if (priv->drag_widget) +- { +- panel_dnd_set_widget_data (data, priv->drag_widget); +- } +- } +-} +- +-static void +-_panel_drag_data_delete (GtkWidget *widget, +- GdkDragContext *drag_context, +- Panel *panel) +-{ +- PanelPrivate *priv = panel->priv; +- +- if (priv->drag_widget) +- { +- xfce_panel_item_remove (XFCE_PANEL_ITEM (priv->drag_widget)); +- priv->drag_widget = NULL; +- } +-} +- + /* pass through right-click events when the event window of itembar is raised + */ + static gboolean +@@ -651,6 +561,8 @@ + GdkEventButton *ev, + Panel *panel) + { ++ GtkWidget *plugin; ++ + if (xfce_itembar_event_window_is_raised (XFCE_ITEMBAR (widget))) + { + guint modifiers; +@@ -660,8 +572,6 @@ + if (ev->button == 3 || (ev->button == 1 && + (ev->state & modifiers) == GDK_CONTROL_MASK)) + { +- GtkWidget *plugin; +- + plugin = xfce_itembar_get_item_at_point (XFCE_ITEMBAR (widget), + ev->x, ev->y); + if (plugin) +@@ -670,14 +580,6 @@ + return TRUE; + } + } +- else if (ev->button == 1) +- { +- PanelPrivate *priv = panel->priv; +- +- priv->drag_widget = +- xfce_itembar_get_item_at_point (XFCE_ITEMBAR (widget), +- ev->x, ev->y); +- } + } + + return FALSE; +@@ -863,13 +765,44 @@ + } + + static void ++_item_start_move_end (GtkWidget *item, ++ GdkDragContext *context, ++ Panel *panel) ++{ ++ PanelPrivate *priv = panel->priv; ++ Panel *p; ++ ++ DBG ("+ finish item drag"); ++ ++ /* disconnect drag end signal */ ++ g_signal_handlers_disconnect_by_func (G_OBJECT (item), G_CALLBACK (_item_start_move_end), panel); ++ ++ if (!priv->edit_mode) ++ { ++ const GPtrArray *panels = panel_app_get_panel_list (); ++ gint i; ++ ++ for (i = 0; i < panels->len; ++i) ++ { ++ p = g_ptr_array_index (panels, i); ++ priv = p->priv; ++ ++ xfce_itembar_lower_event_window (XFCE_ITEMBAR (priv->itembar)); ++ panel_set_items_sensitive (p, TRUE); ++ ++ panel_unblock_autohide (p); ++ } ++ } ++} ++ ++static void + _item_start_move (GtkWidget *item, + Panel *panel) + { + const GPtrArray *panels = panel_app_get_panel_list (); + PanelPrivate *priv; + Panel *p; +- int i; ++ gint i; + + for (i = 0; i < panels->len; ++i) + { +@@ -879,19 +812,16 @@ + if (!priv->edit_mode) + { + panel_set_items_sensitive (p, FALSE); +- +- panel_dnd_set_dest (priv->itembar); +- panel_dnd_set_widget_source (priv->itembar); + xfce_itembar_raise_event_window (XFCE_ITEMBAR (priv->itembar)); +- + panel_block_autohide (p); + } + } + +- priv = panel->priv; +- priv->drag_widget = item; +- +- panel_dnd_begin_drag (priv->itembar); ++ /* start the drag */ ++ panel_dnd_begin_drag (item); ++ ++ /* signal to make panels sensitive after a drop */ ++ g_signal_connect (G_OBJECT (item), "drag-end", G_CALLBACK (_item_start_move_end), panel); + } + + extern void panel_set_hidden (Panel *panel, +Index: xfce_4_4/panel/panel-dnd.c +=================================================================== +--- xfce_4_4/panel/panel-dnd.c (revision 26668) ++++ xfce_4_4/panel/panel-dnd.c (revision 26669) +@@ -36,110 +36,72 @@ + static const GtkTargetEntry dest_target_list[] = + { + { "application/x-xfce-panel-plugin-name", 0, TARGET_PLUGIN_NAME }, +- { "application/x-xfce-panel-plugin-widget", +- GTK_TARGET_SAME_APP, TARGET_PLUGIN_WIDGET }, +- { "text/plain", 0, TARGET_FILE }, +- { "text/uri-list", 0, TARGET_FILE }, +- { "UTF8_STRING", 0, TARGET_FILE } ++ { "application/x-xfce-panel-plugin-widget", GTK_TARGET_SAME_APP, TARGET_PLUGIN_WIDGET } + }; + +-static const guint n_dest_targets = G_N_ELEMENTS (dest_target_list); +- + static const GtkTargetEntry name_target_list[] = + { + { "application/x-xfce-panel-plugin-name", 0, TARGET_PLUGIN_NAME } + }; + +-static const guint n_name_targets = G_N_ELEMENTS (name_target_list); +- + static const GtkTargetEntry widget_target_list[] = + { +- { "application/x-xfce-panel-plugin-widget", 0, TARGET_PLUGIN_WIDGET } ++ { "application/x-xfce-panel-plugin-widget", GTK_TARGET_SAME_APP, TARGET_PLUGIN_WIDGET } + }; + +-static guint n_widget_targets = G_N_ELEMENTS (widget_target_list); +- + /* public API */ + + void +-panel_dnd_set_dest (GtkWidget *widget) ++panel_dnd_set_dest_name_and_widget (GtkWidget *widget) + { + gtk_drag_dest_set (widget, + GTK_DEST_DEFAULT_HIGHLIGHT | GTK_DEST_DEFAULT_MOTION, +- dest_target_list, n_dest_targets, GDK_ACTION_COPY); ++ dest_target_list, G_N_ELEMENTS (dest_target_list), ++ GDK_ACTION_MOVE | GDK_ACTION_COPY); + } + + void +-panel_dnd_set_widget_delete_dest (GtkWidget *widget) ++panel_dnd_set_dest_widget (GtkWidget *widget) + { + gtk_drag_dest_set (widget, + GTK_DEST_DEFAULT_HIGHLIGHT | GTK_DEST_DEFAULT_MOTION, +- widget_target_list, n_widget_targets, +- GDK_ACTION_MOVE); ++ widget_target_list, G_N_ELEMENTS (widget_target_list), GDK_ACTION_MOVE); + } + + void +-panel_dnd_unset_dest (GtkWidget *widget) ++panel_dnd_set_source_name (GtkWidget *widget) + { +- gtk_drag_dest_unset (widget); +-} +- +-GtkWidget * +-panel_dnd_get_plugin_from_data (GtkSelectionData *data) +-{ +- glong *n; +- +- n = (glong *)data->data; +- DBG (" + get pointer: %ld", *n); +- +- return GTK_WIDGET (GINT_TO_POINTER (*n)); +-} +- +-void +-panel_dnd_set_name_source (GtkWidget *widget) +-{ + gtk_drag_source_set (widget, GDK_BUTTON1_MASK, +- name_target_list, n_name_targets, +- GDK_ACTION_COPY); ++ name_target_list, G_N_ELEMENTS (name_target_list), GDK_ACTION_COPY); + } + + void +-panel_dnd_set_widget_source (GtkWidget *widget) ++panel_dnd_set_source_widget (GtkWidget *widget) + { + gtk_drag_source_set (widget, GDK_BUTTON1_MASK, +- widget_target_list, n_widget_targets, +- GDK_ACTION_COPY|GDK_ACTION_MOVE); ++ widget_target_list, G_N_ELEMENTS (widget_target_list), GDK_ACTION_COPY); + } + +-void panel_dnd_unset_source (GtkWidget *widget) +-{ +- gtk_drag_source_unset (widget); +-} +- + void +-panel_dnd_set_widget_data (GtkSelectionData *data, GtkWidget *widget) +-{ +- glong n = GPOINTER_TO_INT (widget); +- +- DBG (" + set pointer: %ld", n); +- +- gtk_selection_data_set (data, data->target, 32, (guchar *) &n, sizeof (n)); +-} +- +-void + panel_dnd_begin_drag (GtkWidget *widget) + { +- static GtkTargetList *list = NULL; +- GdkEvent *ev; ++ GtkTargetList *target_list ; ++ GdkEvent *event; + +- if (G_UNLIKELY (list == NULL)) ++ event = gtk_get_current_event(); ++ if (G_LIKELY (event)) + { +- list = gtk_target_list_new (widget_target_list, n_widget_targets); +- } ++ /* create a new target list */ ++ target_list = gtk_target_list_new (widget_target_list, G_N_ELEMENTS (widget_target_list)); ++ ++ /* begin the drag */ ++ gtk_drag_begin (widget, target_list, GDK_ACTION_MOVE, 1, event); + +- ev = gtk_get_current_event(); +- gtk_drag_begin (widget, list, GDK_ACTION_COPY, 1, ev); ++ /* release the target list */ ++ gtk_target_list_unref (target_list); + +- gdk_event_free (ev); ++ /* free the event */ ++ gdk_event_free (event); ++ } + } + +Index: xfce_4_4/panel/panel-dnd.h +=================================================================== +--- xfce_4_4/panel/panel-dnd.h (revision 26668) ++++ xfce_4_4/panel/panel-dnd.h (revision 26669) +@@ -27,27 +27,17 @@ + enum + { + TARGET_PLUGIN_NAME, +- TARGET_PLUGIN_WIDGET, +- TARGET_FILE ++ TARGET_PLUGIN_WIDGET + }; + +-void panel_dnd_set_dest (GtkWidget *widget); ++void panel_dnd_set_dest_name_and_widget (GtkWidget *widget); + +-void panel_dnd_set_widget_delete_dest (GtkWidget *widget); ++void panel_dnd_set_dest_widget (GtkWidget *widget); + +-void panel_dnd_unset_dest (GtkWidget *widget); ++void panel_dnd_set_source_name (GtkWidget *widget); + +-GtkWidget *panel_dnd_get_plugin_from_data (GtkSelectionData *data); ++void panel_dnd_set_source_widget (GtkWidget *widget); + +- +-void panel_dnd_set_name_source (GtkWidget *widget); +- +-void panel_dnd_set_widget_source (GtkWidget *widget); +- +-void panel_dnd_unset_source (GtkWidget *widget); +- +-void panel_dnd_set_widget_data (GtkSelectionData *data, GtkWidget *plugin); +- + void panel_dnd_begin_drag (GtkWidget *widget); + + #endif /* _PANEL_DND_H */ +Index: xfce_4_4/panel/panel-private.h +=================================================================== +--- xfce_4_4/panel/panel-private.h (revision 26668) ++++ xfce_4_4/panel/panel-private.h (revision 26669) +@@ -55,7 +55,6 @@ + { + GtkWidget *itembar; + GtkWidget *menu; +- GtkWidget *drag_widget; + + int size; + int monitor; +Index: xfce_4_4/panel/panel-dialogs.c +=================================================================== +--- xfce_4_4/panel/panel-dialogs.c (revision 26668) ++++ xfce_4_4/panel/panel-dialogs.c (revision 26669) +@@ -140,50 +140,60 @@ + return FALSE; + } + ++static XfcePanelItemInfo * ++get_selected_tree_item (PanelItemsDialog *pid) ++{ ++ GtkTreeSelection *selection; ++ GtkTreeModel *model; ++ GtkTreeIter iter; ++ XfcePanelItemInfo *info = NULL; ++ ++ /* get the tree selection */ ++ selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (pid->tree)); ++ if (G_LIKELY (selection)) ++ { ++ /* get the selected item */ ++ if (gtk_tree_selection_get_selected (selection, &model, &iter)) ++ gtk_tree_model_get (model, &iter, 0, &info, -1); ++ } ++ ++ return info; ++} + ++ + static gboolean + add_selected_item (PanelItemsDialog *pid) + { +- GtkTreeSelection *sel; +- GtkTreeModel *model; +- GtkTreeIter iter; + XfcePanelItemInfo *info; +- GtkWidget *item = NULL; ++ GtkWidget *item = NULL; + +- sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (pid->tree)); +- +- if (!sel) +- return FALSE; +- +- if (!gtk_tree_selection_get_selected (sel, &model, &iter)) +- return FALSE; +- +- gtk_tree_model_get (model, &iter, 0, &info, -1); +- +- if (!xfce_panel_item_manager_is_available (info->name)) +- return FALSE; +- +- if (pid->active) ++ /* get the selected item */ ++ info = get_selected_tree_item (pid); ++ if (G_LIKELY (info && xfce_panel_item_manager_is_available (info->name))) + { +- PanelPrivate *priv = PANEL_GET_PRIVATE (pid->panel); +- int n; ++ if (pid->active) ++ { ++ PanelPrivate *priv = PANEL_GET_PRIVATE (pid->panel); ++ gint n; + +- n = xfce_itembar_get_item_index (XFCE_ITEMBAR (priv->itembar), +- pid->active); ++ n = xfce_itembar_get_item_index (XFCE_ITEMBAR (priv->itembar), pid->active); + +- item = panel_insert_item (pid->panel, info->name, n + 1); +- } +- else +- { +- item = panel_add_item (pid->panel, info->name); +- } ++ item = panel_insert_item (pid->panel, info->name, n + 1); ++ } ++ else ++ { ++ item = panel_add_item (pid->panel, info->name); ++ } + +- if (item) +- g_idle_add ((GSourceFunc)item_configure_timeout, item); +- else +- xfce_err (_("Could not open \"%s\" module"), info->name); ++ if (item) ++ g_idle_add ((GSourceFunc)item_configure_timeout, item); ++ else ++ xfce_err (_("Could not open \"%s\" module"), info->name); + +- return TRUE; ++ return TRUE; ++ } ++ ++ return FALSE; + } + + static gboolean +@@ -191,31 +201,12 @@ + PanelItemsDialog *pid) + { + if (evt->button == 1 && evt->type == GDK_2BUTTON_PRESS) +- { +- return add_selected_item (pid); +- } ++ return add_selected_item (pid); + + return FALSE; + } + + static void +-cursor_changed (GtkTreeView * tv, PanelItemsDialog *pid) +-{ +- GtkTreeSelection *sel; +- GtkTreeModel *model; +- GtkTreeIter iter; +- XfcePanelItemInfo *info; +- +- if (!(sel = gtk_tree_view_get_selection (tv))) +- return; +- +- if (!gtk_tree_selection_get_selected (sel, &model, &iter)) +- return; +- +- gtk_tree_model_get (model, &iter, 0, &info, -1); +-} +- +-static void + treeview_destroyed (GtkWidget * tv) + { + GtkTreeModel *store; +@@ -226,7 +217,7 @@ + + static void + render_icon (GtkTreeViewColumn * col, GtkCellRenderer * cell, +- GtkTreeModel * model, GtkTreeIter * iter, gpointer data) ++ GtkTreeModel * model, GtkTreeIter * iter, gpointer data) + { + XfcePanelItemInfo *info; + +@@ -244,7 +235,7 @@ + + static void + render_text (GtkTreeViewColumn * col, GtkCellRenderer * cell, +- GtkTreeModel * model, GtkTreeIter * iter, GtkWidget * treeview) ++ GtkTreeModel * model, GtkTreeIter * iter, GtkWidget * treeview) + { + XfcePanelItemInfo *info; + +@@ -279,66 +270,83 @@ + static void + treeview_data_received (GtkWidget *widget, GdkDragContext *context, + gint x, gint y, GtkSelectionData *data, +- guint info, guint time, gpointer user_data) ++ guint info, guint time, PanelItemsDialog *pid) + { +- gboolean handled = FALSE; +- +- DBG (" + drag data received: %d", info); ++ gboolean succeeded = FALSE; ++ GtkWidget *item; + +- if (data->length && info == TARGET_PLUGIN_WIDGET) +- handled = TRUE; +- +- gtk_drag_finish (context, handled, handled, time); ++ /* get the drag source */ ++ item = gtk_drag_get_source_widget (context); ++ ++ if (item && XFCE_IS_PANEL_ITEM (item)) ++ { ++ /* ask to remove the item */ ++ xfce_panel_item_remove (XFCE_PANEL_ITEM (item)); ++ ++ succeeded = TRUE; ++ } ++ ++ /* finish the drag */ ++ gtk_drag_finish (context, succeeded, FALSE, time); + } + + static gboolean + treeview_drag_drop (GtkWidget *widget, GdkDragContext *context, +- gint x, gint y, guint time, gpointer user_data) ++ gint x, gint y, guint time, PanelItemsDialog *pid) + { +- GdkAtom atom = gtk_drag_dest_find_target (widget, context, NULL); ++ GdkAtom target = gtk_drag_dest_find_target (widget, context, NULL); ++ ++ /* we cannot handle the drag data */ ++ if (G_UNLIKELY (target == GDK_NONE)) ++ return FALSE; + +- if (atom != GDK_NONE) +- { +- gtk_drag_get_data (widget, context, atom, time); +- return TRUE; +- } ++ /* request the drag data */ ++ gtk_drag_get_data (widget, context, target, time); ++ ++ /* we call gtk_drag_finish later */ ++ return TRUE; ++} + +- return FALSE; ++static void ++treeview_drag_begin (GtkWidget *treeview, GdkDragContext *context, ++ PanelItemsDialog *pid) ++{ ++ XfcePanelItemInfo *item_info; ++ ++ DBG (" + drag begin"); ++ ++ /* set nice drag icon */ ++ item_info = get_selected_tree_item (pid); ++ if (G_LIKELY (item_info && item_info->icon)) ++ gtk_drag_set_icon_pixbuf (context, item_info->icon, 0, 0); + } + + static void + treeview_data_get (GtkWidget *widget, GdkDragContext *drag_context, + GtkSelectionData *data, guint info, +- guint time, gpointer user_data) ++ guint time, PanelItemsDialog *pid) + { ++ XfcePanelItemInfo *item_info; ++ const gchar *item_name; ++ + DBG (" + drag data get: %d", info); + +- if (info == TARGET_PLUGIN_NAME) ++ if (G_LIKELY (info == TARGET_PLUGIN_NAME)) + { +- GtkTreeSelection *sel; +- GtkTreeModel *model; +- GtkTreeIter iter; +- XfcePanelItemInfo *info; +- +- sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget)); +- +- if (!sel) ++ /* get the selected item info */ ++ item_info = get_selected_tree_item (pid); ++ if (G_LIKELY (item_info)) + { +- DBG ("No selection!"); +- return; ++ item_name = item_info->name; ++ ++ if (xfce_panel_item_manager_is_available (item_name)) ++ { ++ DBG (" + set selection data: %s", item_name); ++ ++ /* set the selection data */ ++ gtk_selection_data_set (data, data->target, 8, (guchar *) item_name, strlen (item_name)); ++ } + } +- +- if (!gtk_tree_selection_get_selected (sel, &model, &iter)) +- return; +- +- gtk_tree_model_get (model, &iter, 0, &info, -1); +- +- if (!xfce_panel_item_manager_is_available (info->name)) +- return; +- +- DBG (" + set data: %s", info->name); +- gtk_selection_data_set (data, data->target, 8, +- (guchar *)info->name, strlen (info->name)); + } + } + +@@ -408,10 +416,10 @@ + scroll = gtk_scrolled_window_new (NULL, NULL); + gtk_widget_show (scroll); + gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scroll), +- GTK_POLICY_NEVER, ++ GTK_POLICY_NEVER, + GTK_POLICY_NEVER); + gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scroll), +- GTK_SHADOW_IN); ++ GTK_SHADOW_IN); + gtk_box_pack_start (GTK_BOX (pid->items_box), scroll, TRUE, TRUE, 0); + + store = gtk_list_store_new (1, G_TYPE_POINTER); +@@ -433,19 +441,14 @@ + g_object_unref (G_OBJECT (store)); + + /* dnd */ +- panel_dnd_set_name_source (tv); ++ panel_dnd_set_source_name (tv); ++ panel_dnd_set_dest_name_and_widget (tv); + +- panel_dnd_set_widget_delete_dest (tv); +- +- g_signal_connect (tv, "drag-data-get", G_CALLBACK (treeview_data_get), +- pid); +- +- g_signal_connect (tv, "drag-data-received", +- G_CALLBACK (treeview_data_received), pid); ++ g_signal_connect (tv, "drag-data-get", G_CALLBACK (treeview_data_get), pid); ++ g_signal_connect (tv, "drag-data-received", G_CALLBACK (treeview_data_received), pid); ++ g_signal_connect (tv, "drag-drop", G_CALLBACK (treeview_drag_drop), pid); ++ g_signal_connect (tv, "drag-begin", G_CALLBACK (treeview_drag_begin), pid); + +- g_signal_connect (tv, "drag-drop", +- G_CALLBACK (treeview_drag_drop), pid); +- + /* create the view */ + col = gtk_tree_view_column_new (); + gtk_tree_view_column_set_spacing (col, BORDER); +@@ -454,14 +457,14 @@ + cell = gtk_cell_renderer_pixbuf_new (); + gtk_tree_view_column_pack_start (col, cell, FALSE); + gtk_tree_view_column_set_cell_data_func (col, cell, +- (GtkTreeCellDataFunc) +- render_icon, NULL, NULL); ++ (GtkTreeCellDataFunc) ++ render_icon, NULL, NULL); + + cell = gtk_cell_renderer_text_new (); + gtk_tree_view_column_pack_start (col, cell, TRUE); + gtk_tree_view_column_set_cell_data_func (col, cell, +- (GtkTreeCellDataFunc) +- render_text, tv, NULL); ++ (GtkTreeCellDataFunc) ++ render_text, tv, NULL); + + color = &(tv->style->fg[GTK_STATE_INSENSITIVE]); + g_object_set (cell, "foreground-gdk", color, NULL); +@@ -481,17 +484,12 @@ + GTK_POLICY_ALWAYS); + } + +- gtk_list_store_append (store, &iter); +- gtk_list_store_set (store, &iter, 0, +- g_ptr_array_index (pid->items, i), -1); ++ gtk_list_store_append (store, &iter); ++ gtk_list_store_set (store, &iter, 0, g_ptr_array_index (pid->items, i), -1); + } + +- g_signal_connect (tv, "cursor_changed", G_CALLBACK (cursor_changed), +- pid); ++ g_signal_connect (tv, "button-press-event", G_CALLBACK (treeview_dblclick), pid); + +- g_signal_connect (tv, "button-press-event", +- G_CALLBACK (treeview_dblclick), pid); +- + path = gtk_tree_path_new_from_string ("0"); + gtk_tree_view_set_cursor (GTK_TREE_VIEW (tv), path, NULL, FALSE); + gtk_tree_path_free (path); +@@ -505,9 +503,6 @@ + panel_block_autohide (panel); + + xfce_itembar_raise_event_window (XFCE_ITEMBAR (priv->itembar)); +- +- panel_dnd_set_dest (priv->itembar); +- panel_dnd_set_widget_source (priv->itembar); + + panel_set_items_sensitive (panel, FALSE); + +@@ -524,9 +519,6 @@ + xfce_itembar_lower_event_window (XFCE_ITEMBAR (priv->itembar)); + + panel_set_items_sensitive (panel, TRUE); +- +- panel_dnd_unset_dest (priv->itembar); +- panel_dnd_unset_source (priv->itembar); + + priv->edit_mode = FALSE; + } +@@ -537,9 +529,7 @@ + if (response != GTK_RESPONSE_HELP) + { + if (response == GTK_RESPONSE_OK) +- { + add_selected_item (pid); +- } + + items_dialog_widget = NULL; + g_ptr_array_foreach (pid->panels, (GFunc)item_dialog_closed, NULL); +Index: xfce_4_4/panel/panel-properties.c +=================================================================== +--- xfce_4_4/panel/panel-properties.c (revision 26668) ++++ xfce_4_4/panel/panel-properties.c (revision 26669) +@@ -939,7 +939,7 @@ + + g_signal_connect (panel, "move-end", G_CALLBACK (panel_move_end), NULL); + +- panel_dnd_set_dest (GTK_WIDGET (panel)); ++ panel_dnd_set_dest_name_and_widget (GTK_WIDGET (panel)); + g_signal_connect (panel, "drag-motion", G_CALLBACK (drag_motion), NULL); + g_signal_connect (panel, "drag-leave", G_CALLBACK (drag_leave), NULL); + } +Index: xfce_4_4/NEWS +=================================================================== +--- xfce_4_4/NEWS (revision 26668) ++++ xfce_4_4/NEWS (revision 26669) +@@ -1,3 +1,12 @@ ++4.4.3 ++===== ++- Quite a bit code changed in the dnd code. Mostly to fix segfaul in ++ FreeBSD-amd64, but more problems were discovered and a lot of code ++ was simplified and a memory leak was plugged. ++- Don't respond the uri drags, we don't use it and it only causes problems ++ like hiding the panel when a file was dragged over the panel (Bug #3815). ++ ++ + 4.4.2 + ===== + - Fix window manager hints reporting width 1 pixel too wide (bug #3402).