--- gnome-panel-2.27.91.orig/debian/add-indicator-applet.py +++ gnome-panel-2.27.91/debian/add-indicator-applet.py @@ -0,0 +1,107 @@ +#!/usr/bin/python + +import os.path +import sys +import time +import gconf + +def msg(type, primary, secondary=""): + sys.stderr.write("[%s] %s: %s\n" % (os.path.basename(sys.argv[0]), + type, primary)) + if secondary: + sys.stderr.write("%s\n\n" % secondary) + +def error(primary, secondary=""): + msg("ERROR", primary, secondary) + +def info(primary, secondary=""): + msg("INFO", primary, secondary) + +def log_excepthook(exc_type, exc_obj, exc_tb): + import traceback + l = traceback.format_exception(exc_type, exc_obj, exc_tb) + error("exception","".join(l)) + +def associate_schemas_in_dir(client, engine, profile_dir, schema_dir): + """ + helper that takes a gconf schema dir and creates a new profile dir + based on the schema, useful for e.g. adding a applet to the panel + """ + for e in client.all_entries(schema_dir): + schema_key = os.path.basename(e.get_key()) + key = os.path.join(profile_dir, schema_key) + engine.associate_schema(key, e.get_key()) + client.suggest_sync() + +if __name__ == "__main__": + sys.excepthook = log_excepthook + info("started") + + if not os.path.exists("/usr/lib/indicator-applet/indicator-applet"): + info("no indicator applet binary installed, exiting") + sys.exit(0) + + engine = gconf.engine_get_default() + client = gconf.client_get_for_engine(engine) + #info("engine",engine) + #info("client",client) + + # make sure this is auto-run only once + client.set_bool("/apps/panel/need_add_indicator_applet", False) + #info("set /apps/panel/need_add_indicator_applet to false") + + # search for the notification area applet + applets = client.all_dirs("/apps/panel/applets") + notification_pos = None + notification_panel = None + notification_right_stick = False + for d in applets: + #info("looking at: %s" % d) + if (client.get_string(os.path.join(d,"bonobo_iid")) == "OAFIID:GNOME_IndicatorApplet"): + info("Already has a indicator applet", + "Your panel already has a indicator applet") + sys.exit(0) + if (client.get_string(os.path.join(d,"bonobo_iid")) == "OAFIID:GNOME_NotificationAreaApplet"): + notification_pos = client.get_int(os.path.join(d,"position")) + notification_panel = client.get_string(os.path.join(d,"toplevel_id")) + notification_right_stick = client.get_bool(os.path.join(d,"panel_right_stick")) + # check if we found the notification area + if (notification_pos is None or + notification_pos == 0 or + notification_panel is None): + error("Could not find notification area", + "Please add the indicator applet manually") + sys.exit(1) + + info("New post: ", notification_pos) + info("New panel: ", notification_panel) + + # create a new indicator applet + applet_name = "applet_indicator_auto_added" + new_applet_name = os.path.join("/apps/panel/applets/",applet_name) + associate_schemas_in_dir(client, engine, new_applet_name, + "/schemas/apps/panel/objects") + client.set_string(os.path.join(new_applet_name, "bonobo_iid"), + "OAFIID:GNOME_IndicatorApplet") + client.set_string(os.path.join(new_applet_name, "toplevel_id"), + notification_panel) + client.set_string(os.path.join(new_applet_name, "object_type"), + "bonobo-applet") + client.set_bool(os.path.join(new_applet_name, "panel_right_stick"), + notification_right_stick) + # position depends on if tray_applet is right stick or not + if notification_right_stick: + notification_pos += 1 + else: + notification_pos -= 1 + client.set_int(os.path.join(new_applet_name, "position"), + notification_pos) + l=client.get_list("/apps/panel/general/applet_id_list", gconf.VALUE_STRING) + l.append(applet_name) + client.set_list("/apps/panel/general/applet_id_list", gconf.VALUE_STRING, l) + client.suggest_sync() + + # show nice information + info("Configuration updated", + "Your panel configuration is updated. ") + --- gnome-panel-2.27.91.orig/debian/gnome-desktop-item-edit.1 +++ gnome-panel-2.27.91/debian/gnome-desktop-item-edit.1 @@ -0,0 +1,22 @@ +.TH "gnome-desktop-item-edit" "1" +.SH "NAME" +gnome-desktop-item-edit \(em tool to edit .desktop file +.SH "SYNOPSIS" +.PP +\fBgnome-desktop-item-edit\fR [\fB\-\-create-new \fP] [\fB\-\-help \fP] +.SH "DESCRIPTION" +.PP +\fBgnome-desktop-item-edit\fR allows you to edit .desktop file. +.SH "OPTIONS" +.IP "\fB\-\-create-new\fP" 10 +Create new file in the given directory. +.IP "\fB\-\-help\fP" 10 +Display help +.SH "SEE ALSO" +.PP +gnome-options(7) +.SH "AUTHOR" +.PP +This manual page was written by Christian Marillat marillat@debian.org for +the \fBDebian GNU/Linux\fP system (but may be used by others). +.\" created by instant / docbook-to-man, Sun 03 Dec 2006, 23:24 --- gnome-panel-2.27.91.orig/debian/gnome-panel.manpages +++ gnome-panel-2.27.91/debian/gnome-panel.manpages @@ -0,0 +1 @@ +debian/*.1 --- gnome-panel-2.27.91.orig/debian/ubuntu-about.desktop +++ gnome-panel-2.27.91/debian/ubuntu-about.desktop @@ -0,0 +1,50 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=About Ubuntu +Name[ca]=Quant a Ubuntu +Name[da]=Om Ubuntu +Name[de]=Über Ubuntu +Name[el]=Περί Ubuntu +Name[es]=Acerca de Ubuntu +Name[fa]=درباره Ubuntu +Name[fi]=Tietoja Ubuntusta +Name[fr]=À propos d'Ubuntu +Name[he]=אודות אובונטו +Name[hu]=Az Ubuntu névjegye +Name[is]=Um Ubuntu +Name[it]=Informazioni su Ubuntu +Name[nl]=Over Ubuntu +Name[pt]=Sobre o Ubuntu +Name[pt_BR]=Sobre o Ubuntu +Name[ro]=Despre Ubuntu +Name[sk]=O Ubuntu +Name[sv]=Om Ubuntu +Name[xh]=Malunga ne-Ubuntu +Name[zh_CN]=关于 Ubuntu +Comment=Learn more about Ubuntu +Comment[ca]=Conegueu més sobre Ubuntu +Comment[da]=Lær mere om Ubuntu +Comment[de]=Mehr über Ubuntu erfahren +Comment[el]=Μάθετε περισσότερα για το Ubuntu +Comment[es]=Sepa más acerca de ubuntu +Comment[fa]=راجع به Ubuntu بیشتر بدانید +Comment[fi]=Näytä tietoja Ubuntu-järjestelmästä +Comment[fr]=En savoir plus à propos d'Ubuntu +Comment[he]=קרא דואר באמצעות אבולושיין +Comment[hu]=Tudjon meg többet az Ubunturól +Comment[is]=Lærðu meira um Ubuntu +Comment[it]=Sapere di più circa Ubuntu +Comment[nl]=Kom meer te weten over Ubunt +Comment[pt]=Aprenda mais sobre o Ubuntu +Comment[pt_BR]=Aprenda mais sobre o Ubuntu +Comment[ro]=Aflaţi mai multe despre Ubuntu +Comment[sk]=Dozvedieť sa viac o Ubuntu +Comment[sv]=Lär dig mer om Ubuntu +Comment[xh]=Funda ngaphezulu nge-Ubuntu +Comment[zh_CN]=更多有关 Ubuntu 的信息 +Exec=yelp ghelp:about-ubuntu +Icon=distributor-logo +Terminal=false +Type=Application +Categories=GNOME;Application;Core; +StartupNotify=true --- gnome-panel-2.27.91.orig/debian/indicator-applet.desktop +++ gnome-panel-2.27.91/debian/indicator-applet.desktop @@ -0,0 +1,6 @@ +[Desktop Entry] +Type=Application +Name=Indicator applet +Exec=sh -c "sleep 60 && python /usr/share/gnome-panel/add-indicator-applet.py" +OnlyShowIn=GNOME; +AutostartCondition=GNOME /apps/panel/need_add_indicator_applet --- gnome-panel-2.27.91.orig/debian/copyright +++ gnome-panel-2.27.91/debian/copyright @@ -0,0 +1,64 @@ +This package was debianized by Jim Pick jim@jimpick.com on Sat, 14 Mar +1998 20:12:23 -0800. Taken over by Raphael Hertzog + on Wed, 22 Sep 1999 13:24:34 +0200, and taken +over again by James LewisMoss on October 26, 1999. +and again by Marc Dequènes (Duck) on 2003-03-26. + +It was downloaded from http://ftp.gnome.org/pub/GNOME/sources/gnome-panel/ + +Upstream Authors and Copyright holders: + Too many to list here, but the full list is in: + /usr/share/doc/gnome-panel/AUTHORS + +License for the panel: + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, 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-2'. + + +License for the library: + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301 USA. + +On Debian systems, the complete text of the GNU Library General +Public License can be found in `/usr/share/common-licenses/LGPL-2'. + + +License for the documentation: + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation + License (GFDL), Version 1.1 or any later version published + by the Free Software Foundation with no Invariant Sections, + no Front-Cover Texts, and no Back-Cover Texts. + +On Debian systems, the complete text of the GNU Free Documentation +License can be found in `/usr/share/common-licenses/GFDL-1.2'. --- gnome-panel-2.27.91.orig/debian/panel-test-applets.sgml +++ gnome-panel-2.27.91/debian/panel-test-applets.sgml @@ -0,0 +1,99 @@ +Christian"> + Marillat"> + december 7, 2003"> + 1"> + marillat@debian.org"> + + panel-test-applets"> + + Debian GNU/Linux"> + GNU"> +]> + + + +
+ &dhemail; +
+ + &dhfirstname; + &dhsurname; + + + 2001 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + &dhpackage; + + display installed applets + + + + &dhpackage; + + + + + + + DESCRIPTION + + &dhpackage; display installed applets in a + dialog box and does nothing else. + + + + + OPTIONS + + + + + + Display help + + + + + + + SEE ALSO + + gnome-options(7) + + + + AUTHOR + + This manual page was written by &dhusername; &dhemail; for + the &debian; system (but may be used by others). + + +
+ + --- gnome-panel-2.27.91.orig/debian/migrate-fusa-config.py +++ gnome-panel-2.27.91/debian/migrate-fusa-config.py @@ -0,0 +1,108 @@ +#!/usr/bin/python + +import gconf +import os.path +import sys + +from gettext import gettext as _ +import gettext + +#FIXME: add checks here and run without UI if that fails to import +import pygtk +pygtk.require('2.0') +import gtk + +def error(primary, secondary): + d = gtk.MessageDialog(type=gtk.MESSAGE_ERROR, buttons=gtk.BUTTONS_OK) + d.set_markup("%s" % primary) + d.format_secondary_text(secondary) + d.run() + d.destroy() + +def info(primary, secondary): + d = gtk.MessageDialog(type=gtk.MESSAGE_INFO, buttons=gtk.BUTTONS_OK) + d.set_markup("%s" % primary) + d.format_secondary_text(secondary) + d.run() + d.destroy() + +def associate_schemas_in_dir(client, engine, profile_dir, schema_dir): + """ + helper that takes a gconf schema dir and creates a new profile dir + based on the schema, useful for e.g. adding a applet to the panel + """ + for e in client.all_entries(schema_dir): + schema_key = os.path.basename(e.get_key()) + key = os.path.join(profile_dir, schema_key) + engine.associate_schema(key, e.get_key()) + client.suggest_sync() + +if __name__ == "__main__": + gettext.bindtextdomain("gnome-panel") + + engine = gconf.engine_get_default() + client = gconf.client_get_for_engine(engine) + objects = client.all_dirs("/apps/panel/objects") + + logout=None + logout_panel=None + for d in objects: + if client.get_string(os.path.join(d,"action_type")) == "logout": + logout=os.path.basename(d) + logout_panel=client.get_string(os.path.join(d,"toplevel_id")) + break + + # we do not have a logout object or in a non-standard location, fail + if not logout: + error(_("No logout button found"), + _("The logout button can not be found or it is not in " + "the standard location. Please update the panel " + "configuration manually.")) + sys.exit(1) + + if not os.path.exists("/usr/lib/fast-user-switch-applet/fast-user-switch-applet"): + error(_("No fast-user-switching applet found"), + _("The fusa applet can not be found or it is not in " + "the standard location. Please update the panel " + "configuration manually.")) + sys.exit(1) + + # search for the fusa applet + applets = client.all_dirs("/apps/panel/applets") + for d in applets: + # move the fusa applet to new location + if (client.get_string(os.path.join(d,"bonobo_iid")) == "OAFIID:GNOME_FastUserSwitchApplet"): + client.set_int(os.path.join(d,"position"),0) + client.set_bool(os.path.join(d,"panel_right_stick"), True) + break + else: + # create a new one + applet_name = "applet_fusa_auto_migrated" + new_applet_name = os.path.join("/apps/panel/applets/",applet_name) + associate_schemas_in_dir(client, engine, new_applet_name, + "/schemas/apps/panel/objects") + client.set_string(os.path.join(new_applet_name, "bonobo_iid"), + "OAFIID:GNOME_FastUserSwitchApplet") + client.set_string(os.path.join(new_applet_name, "toplevel_id"), + logout_panel) + client.set_string(os.path.join(new_applet_name, "object_type"), + "bonobo-applet") + client.set_bool(os.path.join(new_applet_name, "panel_right_stick"), True) + l=client.get_list("/apps/panel/general/applet_id_list", gconf.VALUE_STRING) + l.append(applet_name) + client.set_list("/apps/panel/general/applet_id_list", gconf.VALUE_STRING, l) + + # remove the logout button (if its in the object_id_list) + l=client.get_list("/apps/panel/general/object_id_list", gconf.VALUE_STRING) + try: + l.remove(logout) + client.set_list("/apps/panel/general/object_id_list", gconf.VALUE_STRING, l) + except ValueError, e: + # print out message here so that it gets captured in .xsession-errors + sys.stderr.write("ignoring logout object '%s' (not in object_id_list: %s)" % (logout, e)) + + # show nice information + info(_("Configuration updated"), + _("Your panel configuration is updated. Please logout " + "to complete the update.")) + --- gnome-panel-2.27.91.orig/debian/watch +++ gnome-panel-2.27.91/debian/watch @@ -0,0 +1,3 @@ +version=2 +http://ftp.gnome.org/pub/GNOME/sources/gnome-panel/([\d\.]+)[024678]/gnome-panel-(.*)\.tar\.gz \ + debian uupdate --- gnome-panel-2.27.91.orig/debian/gnome-panel-data.install +++ gnome-panel-2.27.91/debian/gnome-panel-data.install @@ -0,0 +1,14 @@ +debian/tmp/etc/gconf/ usr/share/ +debian/tmp/etc/dbus-1 +debian/tmp/usr/lib/bonobo +debian/tmp/usr/share/applications +debian/tmp/usr/share/dbus-1 +debian/tmp/usr/share/gnome-panelrc usr/share/gnome/ +debian/tmp/usr/share/gnome-panel +debian/tmp/usr/share/gnome +debian/tmp/usr/share/gnome-2.0 +debian/tmp/usr/share/icons +debian/tmp/usr/share/locale +debian/tmp/usr/share/omf +debian/tmp/usr/share/polkit-1 +debian/ubuntu-about.desktop usr/share/applications/ --- gnome-panel-2.27.91.orig/debian/libpanel-applet2-doc.doc-base +++ gnome-panel-2.27.91/debian/libpanel-applet2-doc.doc-base @@ -0,0 +1,11 @@ +Document: libpanel-applet2-doc +Title: Panel Applet Writer's Reference Manual +Author: Mark McLoughlin +Abstract: This manual documents the interfaces of the panel applet writing + library for GNOME 2.x and a short guide to porting applets from the GNOME + 1.x interfaces. +Section: Programming + +Format: HTML +Index: /usr/share/doc/libpanel-applet2-doc/html/index.html +Files: /usr/share/doc/libpanel-applet2-doc/html/*.html --- gnome-panel-2.27.91.orig/debian/fusa-applet.note.in +++ gnome-panel-2.27.91/debian/fusa-applet.note.in @@ -0,0 +1,14 @@ +Terminal: False +Command: python /usr/share/gnome-panel/migrate-fusa-config.py +GettextDomain: gnome-panel +OnlyAdminUsers: False +DisplayIf: pgrep -U $(id -u) gnome-panel && (gconftool -R /apps/panel/objects|grep -q 'action_type = logout') +_ButtonText: Update +_Description: + There is now a combined status menu for + instant messaging status, switching user accounts, and + exiting Ubuntu. + . + This menu will replace the current Quit button. If you + click on the "Update" button below your Quit button + will be replaced with the new status menu. --- gnome-panel-2.27.91.orig/debian/control +++ gnome-panel-2.27.91/debian/control @@ -0,0 +1,130 @@ +Source: gnome-panel +Section: gnome +Priority: optional +Maintainer: Ubuntu Desktop Team +XSBC-Original-Maintainer: Guilherme de S. Pastore +Uploaders: Debian GNOME Maintainers +Standards-Version: 3.8.1 +Vcs-Bzr: http://code.launchpad.net/~ubuntu-desktop/gnome-panel/ubuntu +Build-Depends: cdbs (>= 0.4.41), + debhelper (>= 5), + quilt, + intltool (>= 0.40.0), + gnome-pkg-tools (>= 0.14), + dpkg-dev (>= 1.13.19), + gnome-doc-utils, + libx11-dev, + libxau-dev, + libgtk2.0-dev (>= 2.15.1), + libgnomeui-dev (>= 2.16.0-2), + libgnome-desktop-dev (>= 2.26), + libgnome2-dev (>= 2.13.0), + libbonoboui2-dev (>= 2.1.1), + liborbit2-dev (>= 1:2.12.1), + libwnck-dev (>= 2.19.5), + libgconf2-dev (>= 2.6.1), + libecal1.2-dev (>= 1.6.0) [!hurd-i386], + libedataserverui1.2-dev (>= 1.11.2) [!hurd-i386], + libcairo2-dev (>= 1.0.0), + gtk-doc-tools (>= 1.0), + libgnome-menu-dev (>= 2.16.1), + libpango1.0-dev (>= 1.15.4), + libedataserver1.2-dev (>= 1.2.0), + libglib2.0-dev (>= 2.18.0), + evolution-data-server-dev [!hurd-i386], + libgweather-dev (>= 2.27.90), + librsvg2-dev, + libdbus-glib-1-dev (>= 0.71), + libdbus-1-dev (>= 1.1.2), + network-manager-dev (>= 0.6), + libnm-util-dev (>= 0.6), + libpolkit-gobject-1-dev (>= 0.91), + sharutils +Build-Depends-Indep: libglib2.0-dev, libgtk2.0-dev + +Package: gnome-panel +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + gnome-panel-data (>= ${gnome:Version}), + gnome-panel-data (<< ${gnome:NextVersion}), + gnome-desktop-data (>= 2.10.0-1), + gnome-control-center (>= 1:2.8.2-3), + gnome-menus (>= 2.16.1), + gnome-about (>= 2.10.0-1) +Recommends: gnome-applets (>= 2.12.1-1), + gnome-session, + evolution-data-server, + gnome-icon-theme (>= 2.24), + alacarte, + gvfs, + indicator-applet +Suggests: yelp, + gnome2-user-guide, + gnome-terminal | x-terminal-emulator, + gnome-system-tools, + nautilus, + evolution, + epiphany-browser, + gnome-session (>= 2.23.6) | gdm, + menu-xdg (>= 0.2) +Description: launcher and docking facility for GNOME + The GNOME Panel is an essential part of the GNOME Desktop, providing + toolbar-like “panels” which can be attached to the sides of your desktop. + They are used to launch applications and embed a number of other + functions, such as quick launch icons, the clock, the notification area, + volume controls and the battery charge indicator, and utilities ranging + from weather forecast to system monitoring. + +Package: libpanel-applet2-0 +Section: libs +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends} +Description: library for GNOME Panel applets + This library is used by GNOME Panel applets. + +Package: gnome-panel-dbg +Section: debug +Priority: extra +Architecture: any +Depends: ${misc:Depends}, + gnome-panel (= ${binary:Version}), + libpanel-applet2-0 (= ${binary:Version}) +Description: GNOME Panel and library for panel applets - debugging symbols + This package contains debugging symbols for gnome-panel and the + libpanel-applet library. It is provided to help debugging problem in + the panel itself or in the library. The debugging symbols are installed + in /usr/lib/debug and will automatically be used by gdb. + +Package: libpanel-applet2-dev +Section: libdevel +Architecture: any +Depends: ${misc:Depends}, + libpanel-applet2-0 (= ${binary:Version}), + libgconf2-dev (>= 2.6.1), + libgtk2.0-dev (>= 2.13.1), + libgnomeui-dev (>= 2.5.4), + libbonoboui2-dev (>= 2.1.1) +Description: library for GNOME Panel applets - development files + This packages provides the include files and static library for the GNOME + Panel applet library functions. + +Package: libpanel-applet2-doc +Section: doc +Architecture: all +Depends: ${misc:Depends} +Suggests: doc-base +Description: library for GNOME Panel applets - documentation files + This packages provides the documentation files for the GNOME Panel applet + library functions. + +Package: gnome-panel-data +Section: gnome +Architecture: all +Depends: ${misc:Depends}, + gconf2 (>= 2.14.0-2) +Recommends: gnome-panel +Description: common files for the GNOME Panel + This package includes some files that are needed by the GNOME Panel + (Pixmaps, .desktop files and internationalization files). --- gnome-panel-2.27.91.orig/debian/libpanel-applet2-0.install +++ gnome-panel-2.27.91/debian/libpanel-applet2-0.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libpanel-applet-2.so.* usr/lib/ --- gnome-panel-2.27.91.orig/debian/panel-test-applets.1 +++ gnome-panel-2.27.91/debian/panel-test-applets.1 @@ -0,0 +1,21 @@ +.TH "panel-test-applets" "1" +.SH "NAME" +panel-test-applets \(em display installed applets +.SH "SYNOPSIS" +.PP +\fBpanel-test-applets\fR [\fB\-\-help \fP] +.SH "DESCRIPTION" +.PP +\fBpanel-test-applets\fR display installed applets in a +dialog box and does nothing else. +.SH "OPTIONS" +.IP "\fB\-\-help\fP" 10 +Display help +.SH "SEE ALSO" +.PP +gnome-options(7) +.SH "AUTHOR" +.PP +This manual page was written by Christian Marillat marillat@debian.org for +the \fBDebian GNU/Linux\fP system (but may be used by others). +.\" created by instant / docbook-to-man, Sun 03 Dec 2006, 23:24 --- gnome-panel-2.27.91.orig/debian/application-default-icon.png.uue +++ gnome-panel-2.27.91/debian/application-default-icon.png.uue @@ -0,0 +1,17 @@ +begin 644 application-default-icon.png +MB5!.1PT*&@H````-24A$4@```!@````8"`8```#@=SWX````!F)+1T0`^`#U +M`/)ANX+H````"7!(67,```L3```+$P$`FIP8````!W1)344'U0,7#B4`YB3/ +M)P```@!)1$%42,?ME;UNU%`0A;\9>Z,D)!)%1$,7*BAYD!1(O!*T=$B\`$*( +MAL<)-%0@(44BFV03^\X<"J^]3EAO$`JB823[_LCWG/&9<^^%__&OPP#V]_=U +MU\#S^?P!<%+W$^\^?.33EZ\LFH*Y81@IH4PR"Q%)1*`,,A.IRZEO`91)"VBZPX;P)W!P,E2$:D$T5D&)*1:4@@6+ZZR#3:UOKA(V!K +M(+BX;+AJ6IK28.88AB2D)#/)*$0&DLA,D)8$PCJER4PB$X"JJJJ(\('@Z9-# +M#A\>T$8`X&;#0HQ5'S`S1D,,!R"R,#\]Y>WKE\QF,T6$!H*]W6UJ[[(PLQ40 +M=)*-P4?MN!\1;-=VK3;U+[8:`8R!-X&/Y_M^*<4!KB'T@'\"?C,BP@"K[RKS +M-6L-4'T3:)W>4^#K"$;?:6T--H%/@4ZLER3Y;;\\]6S(O-\'#M2^R453#OF= +MNE15E8!\2IY-;KE-GE$-5D4^.SNC;5LD;=3YMHVV6"S&+JH&@N/C8THIPPZ< +M\OBZ^7Z`':!(*DMP7Q:N[?4U +JLRU@V\SJ[F@79G8N:2[I.W#RU^_DGR$L`JH&B.Y>`````$E%3D2N0F"" +` +end --- gnome-panel-2.27.91.orig/debian/rules +++ gnome-panel-2.27.91/debian/rules @@ -0,0 +1,47 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk +include /usr/share/cdbs/1/rules/utils.mk +include /usr/share/cdbs/1/class/gnome.mk +include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk +include /usr/share/gnome-pkg-tools/1/rules/gnome-version.mk +include /usr/share/gnome-pkg-tools/1/rules/clean-la.mk +#include /usr/share/gnome-pkg-tools/1/rules/patch-translations.mk +-include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk + +LDFLAGS += -Wl,-z,defs -Wl,-O1 -Wl,--as-needed + +DEB_CONFIGURE_EXTRA_FLAGS += \ + --disable-scrollkeeper \ + --with-in-process-applets=all \ + --disable-initial-animation +ifneq ($(DEB_BUILD_GNU_SYSTEM),gnu) + DEB_CONFIGURE_EXTRA_FLAGS += --enable-eds +endif + +DEB_DH_MAKESHLIBS_ARGS_libpanel-applet2-0 += -V"libpanel-applet2-0 (>= 2.26.0)" +DEB_DH_MAKESHLIBS_ARGS_gnome-panel += --no-act + +build/gnome-panel:: + intltool-merge -r po debian/fusa-applet.note.in debian/fusa-applet.note + +binary-install/gnome-panel:: + chmod a+x debian/gnome-panel/usr/lib/gnome-panel/* + cd po; intltool-update -p --verbose + +binary-install/gnome-panel-data:: + find debian/gnome-panel-data/usr/share -type f -exec chmod -R a-x {} \; + cd debian/gnome-panel-data/usr/share/gconf && \ + mkdir defaults && \ + mv schemas/panel-default-setup.entries \ + defaults/05_panel-default-setup.entries + uudecode debian/application-default-icon.png.uue -o debian/application-default-icon.png + mkdir -p debian/gnome-panel-data/usr/share/icons + cp debian/application-default-icon.png debian/gnome-panel-data/usr/share/icons/ + +binary-install/libpanel-applet2-doc:: + find debian/libpanel-applet2-doc/usr/share/doc/libpanel-applet2-doc/ -name ".arch-ids" -depth -exec rm -rf {} \; + +clean:: + -rm -f debian/application-default-icon.png --- gnome-panel-2.27.91.orig/debian/libpanel-applet2-dev.install +++ gnome-panel-2.27.91/debian/libpanel-applet2-dev.install @@ -0,0 +1,6 @@ +debian/tmp/usr/include/ usr/ +debian/tmp/usr/lib/pkgconfig usr/lib/ +debian/tmp/usr/lib/libpanel-applet-2.a usr/lib/ +debian/tmp/usr/lib/libpanel-applet-2.la usr/lib/ +debian/tmp/usr/lib/libpanel-applet-2.so usr/lib/ +debian/tmp/usr/share/idl/ usr/share/ --- gnome-panel-2.27.91.orig/debian/changelog +++ gnome-panel-2.27.91/debian/changelog @@ -0,0 +1,2475 @@ +gnome-panel (1:2.27.91-0ubuntu2) karmic; urgency=low + + * debian/patches/25_dynamic_fusa_detection.patch: + - reactivate this change since fusa has been updated now + * debian/patches/70_relibtoolize.patch: updated + + -- Sebastien Bacher Tue, 01 Sep 2009 10:47:58 +0200 + +gnome-panel (1:2.27.91-0ubuntu1) karmic; urgency=low + + * New upstream release (LP: #418975) + Panel + - Drop dead code (Vincent) + - Don't show icons icons for actions and categories (William Jon + McCann, Matthias Clasen, Vincent) + - Remove use of GnomeEntry in run dialog (Diego Escalante Urrelo, + Vincent) + - Port to GtkBuilder (Vincent) + - Make the run button icon respect the desktop-wide setting (Vincent) + - Add gnome-panel-add script to allow easy addition of applets + (Vincent) + - Use g_timeout_add_seconds to reduce wakeups (Javier Jardón) + - Ignore overlapping monitors and just use the largest one (Federico + Mena Quintero) + - Put LVDS as first monitor (Federico Mena Quintero) + - Correctly set struts when two panels are right-oriented (Alexey + Rusakov) + - Use /desktop/gnome/lockdown/disable_lock_screen (Vincent) + - Use a different define for the size of the Applications menu icon + (Vincent) + - Clarify warning message at forced quit (Gabor Kelemen) + - Make sure to preload /apps/panel/general early enough (Behdad + Esfahbod) + - Remove empty labels from translation (Andre Klapper) + - Do not use non-existing monitors for toplevels (Vincent) + - Do not save monitor changes that are caused by constraints (Vincent) + - Use randr 1.3 features to detect the first monitor when possible + (Vincent) + - Use XRRGetScreenResourcesCurrent() when possible (Vincent) + - Improve check for LVDS-named output (Vincent) + - Remove deprecated Encoding key from desktop file (Frédéric Péters) + libpanel-applet + - Port to GtkBuilder (Diego Escalante Urrelo, Vincent) + All Applets + - Port to GtkBuilder (Vincent) + Clock Applet + - Change "Clock Options" label to "Clock Format" (Vincent) + - Launch the configured calendar/tasks application instead of evolution + (Alex Converse, Vincent) + - Port to PolicyKit 1 (Matthias Clasen) + - Make default PolicyKit configuration stricter (Vincent) + - Do not crash when setting time/timezone without PolicyKit (Matt Keenan) + - Do not use obsolete and unneeded daylight variable (Alexis Ballier) + - Fix confusion between GTime and time_t (Matthias Drochner) + - Add missing mnemonics and window title (Gabor Kelemen) + - Use g_timeout_add_seconds to reduce wakeups (Javier Jardón) + - Do not place on the map locations with lat = 0 and lon = 0 (Vincent) + - Make it possible to change the name of a location (Vincent) + - Add/improve translator comments (Vincent) + - Code cleanups (Vincent) + Notification Area Applet + - Allow more flexibility for NaTrayChild compositing (Owen Taylor) + - Use g_timeout_add_seconds to reduce wakeups (Javier Jardón) + Misc + - Add ACLOCAL_AMFLAGS (Sébastien Bacher) + - Use silent-rules instead of shave for quiet build (Vincent) + - Remove workaround for scrollkeeper (Vincent) + - Remove libglade dependency (Vincent) + - Require libgweather 2.27.90 (Vincent) + * debian/control.in: + - Drop build-depends on libglade2-dev + - Bump build-depends on libgweather-dev + * debian/patches/02_polkit1.patch: + * debian/patches/06_clock_permissions.patch: + * debian/patches/31_correct_aclocal_command.patch: + - Applied upstream + * debian/patches/01_layout.patch: + * debian/patches/08_clock_applet_event.patch: + * debian/patches/09_default_icons.patch: + * debian/patches/16_compiz_workspace_switcher.patch: + * debian/patches/17_about-ubuntu-translation.patch: + * debian/patches/30_disable-initial-animation.patch: + * debian/patches/70_relibtoolize.patch: + * debian/patches/85_disable_shutdown_on_ltsp.patch: + * debian/patches/99_ltmain_as-needed.patch: + - Updated + + -- Robert Ancell Wed, 26 Aug 2009 11:28:21 +1000 + +gnome-panel (1:2.27.4-0ubuntu6) karmic; urgency=low + + * debian/patches/86_signal_curtain.patch: + - new version by Cody Russell + + -- Sebastien Bacher Tue, 11 Aug 2009 19:20:19 +0200 + +gnome-panel (1:2.27.4-0ubuntu5) karmic; urgency=low + + * debian/patches/86_signal_curtain.patch: + - Signal the curtain when loaded + * debian/patches/02_polkit1.patch: + * debian/patches/09_default_icons.patch: + * debian/patches/18_lockdown_lock_editor.patch: + * debian/patches/30_disable-initial-animation.patch: + * debian/patches/85_disable_shutdown_on_ltsp.patch: + * debian/patches/99_ltmain_as-needed.patch: + - Refreshed + + -- Robert Ancell Wed, 05 Aug 2009 15:51:54 +0100 + +gnome-panel (1:2.27.4-0ubuntu3) karmic; urgency=low + + * debian/patches/04_default_panel_config.patch: + - don't add a mixer applet to the default configuration since gnome-media + has a notification area icon for that now (lp: #401294) + + -- Sebastien Bacher Wed, 22 Jul 2009 16:35:22 +0200 + +gnome-panel (1:2.27.4-0ubuntu2) karmic; urgency=low + + * debian/patches/04_default_panel_config.patch: + - don't add a mixer applet to the default installation + + -- Sebastien Bacher Wed, 22 Jul 2009 16:34:27 +0200 + +gnome-panel (1:2.27.4-0ubuntu1) karmic; urgency=low + + * New upstream version + * debian/patches/31_correct_aclocal_command.patch: + - use aclocal magic to fix build issue + * debian/patches/70_relibtoolize.patch: + - new version update + * debian/rules: + - don't use configure option to start time-admin since it's not used now + * debian/watch: + - watch unstable versions + + -- Sebastien Bacher Thu, 16 Jul 2009 15:06:23 +0200 + +gnome-panel (1:2.26.3-0ubuntu2) karmic; urgency=low + + * Add 02_polkit1.patch: Port to PolicyKit 1.0 API. + * debian/control.in: Drop libpolkit-gnome-dev and libpolkit-dbus-dev, add + libpolkit-gobject-1-dev build deps. Drop policykit-gnome dependency. + * 70_relibtoolize.patch: Regenerate to pick up changes from above. + * 06_clock_permissions.patch: Update to new PolicyKit configuration syntax. + * debian/gnome-panel-data.install: Update path for polkit-1 files. + + -- Martin Pitt Mon, 13 Jul 2009 14:51:37 +0200 + +gnome-panel (1:2.26.3-0ubuntu1) karmic; urgency=low + + * New upstream version + * debian/control.in: + - typo fix + * debian/patches/18_lockdown_lock_editor.patch: + - change to have lockdown locking the menu editor (lp: #4712, #385596) + * debian/patches/31_fix_crash_second_screen.patch: + - the change is in the new version + + -- Sebastien Bacher Fri, 10 Jul 2009 14:24:56 +0200 + +gnome-panel (1:2.26.2-1ubuntu4) karmic; urgency=low + + * debian/patches/31_fix_crash_second_screen.patch + - Add patch by Gerd Kohlberger to fix a crash when clicking + a launcher on a second screen. (LP: #256041) + + -- Andreas Moog Fri, 03 Jul 2009 17:30:57 +0200 + +gnome-panel (1:2.26.2-1ubuntu3) karmic; urgency=low + + * debian/patches/70_relibtoolize.patch: + - run automake update + + -- Sebastien Bacher Thu, 02 Jul 2009 15:26:55 +0200 + +gnome-panel (1:2.26.2-1ubuntu2) karmic; urgency=low + + * debian/patches/25_dynamic_fusa_detection.patch: + - comment this change for the new gdm since the fast user switch applet + needs to be updated to get system actions working + + -- Sebastien Bacher Thu, 02 Jul 2009 14:42:01 +0200 + +gnome-panel (1:2.26.2-1ubuntu1) karmic; urgency=low + + * Rebase on Debian unstable (LP: #388263): + - debian/add-indicator-applet.py, debian/indicator-applet.desktop: + + Add indicator applet to existing panel configs on upgrade. + - debian/application-default-icon.png.uue: + + Default icon for the menu entries. + - debian/control{.in}: + + Add Vcs-Bzr info. + + Build-depend on sharutils. + + gnome-panel suggests menu-xdg rather than depends on it. + + gnome-panel recommends indicator-applet. + - debian/fusa-applet.note.in, debian/migrate-fusa-config.py, + debian/patches/20_fusa_migration_note_i18n.patch: + + Show an update-notifer hook about the FUSA applet and + add a script that can do the config migration. + - debian/gnome-panel-data.install, debian/ubuntu-about.desktop{.in}: + + Install the "About Ubuntu" menu item. + - debian/gnome-panel-data.preinst: + + Clean conffiles which are not in the new version on upgrade. + - debian/gnome-panel.install: + + Install the files necessary to migrate existing panel configs + on upgrade, to add the FUSA and indicator applet. + - debian/gnome-panel.postinst: + + Show note for adding FUSA applet on upgrade. + + Add GConf defaults for directory fixup and indicator-applet + migration on upgrade. + - debian/gnome-panel.postrm: + - Remove GConf defaults on uninstall. + - debian/patches/01_layout.patch: + + Changes to the panel layout. + - debian/patches/04_default_panel_config.patch: + + Change to the default configuration. + - debian/patches/16_compiz_workspace_switcher.patch: + + Allow the workspace switcher to change the desktop layout + when using compiz. + - debian/patches/17_about-ubuntu-translation.patch: + + List ubuntu-about.desktop for translation. + - debian/patches/25_dynamic_fusa_detection.patch: + + Removes the shutdown, logout and lock screen items when the + FUSA applet is on the panel (LP: #335242). + - debian/patches/25_inode_directory_fixup.patch: + + Restore inode/directory association on upgrade from + Hardy (LP: #260492). + - debian/patches/30_disable-initial-animation.patch: + + Patch to add build-time flag to disable the initial slide-in animation. + - debian/patches/70_relibtoolize.patch: + + Updated for Ubuntu-specific changes. + - debian/patches/85_disable_shutdown_on_ltsp.patch: + + Suppress the shutdown option in the panel if LTSP_CLIENT + is set. (LP: #282669) + - Dropped Debian-specific patches: + + 01_panel_submenus.patch. + + 02_panel_logout.patch. + + 03_switch-user_lock.patch. + + 04_gnome-panel-logout.patch + - debian/rules: + + Don't call patch-translations.mk - none of the translations in + debian/po-up are applicable to Ubuntu. + + Disable the initial slide-in animation. + + Create debian/fusa-applet.note. + + Update translations template. + + Install the default menu icon. + * Closes LP: #327859 + + -- Chris Coulson Mon, 22 Jun 2009 22:26:26 +0100 + +gnome-panel (2.26.2-1) unstable; urgency=low + + * Require gnome-desktop 2.26. Closes: #526680. + * 02_panel_logout.patch: correctly check whether GDM allows shutdown + in case gnome-session 2.26 is not running. Closes: #526807. + * Remove scrollkeeper dependency. + * Add libglib2.0-doc and libgtk2.0-doc to b-d-i to ensure proper + xrefs. + * New upstream release. + + Removes the need for scrollkeeper, fixes FTBFS in experimental. + * Regenerate 70_relibtoolize.patch. + + -- Josselin Mouette Fri, 29 May 2009 11:40:28 +0200 + +gnome-panel (2.26.0-1) experimental; urgency=low + + * New upstream release. + * Bump build-deps on glib/gtk, drop scrollkeeper. + * Bump shlibs to 2.26.0. + * 02_panel_logout.patch: update for new version, using the patch from + Gentoo instead, which allows to support the new gnome-session with a + clean fallback to XSMP/GDM if it is not available. + * 04_gnome-panel-logout.patch: use the new API, so that we actually + talk to gnome-session if possible when invoking gnome-panel-logout. + * 05_clock_dbus.patch: dropped, merged upstream. + * Refresh other patches. + * 70_relibtoolize.patch: updated for the new version. + * Fix debugging package section. + * Update licensing information to match reality. + + -- Josselin Mouette Sun, 12 Apr 2009 12:34:28 +0200 + +gnome-panel (2.24.3-1) unstable; urgency=low + + [ Loic Minier ] + * Let gnome-panel suggest evolution and epiphany-browser as their launchers + are part of the default panel layout and gnome-session (>= 2.23.6) | gdm + as gnome-panel attempts to talk to them for shutdown. + + [ Josselin Mouette ] + * Standards version is 3.8.1. + * New upstream release. + * 70_relibtoolize.patch: updated for the new version. + * Don’t pass gksu to time-admin anymore. + * 05_clock_dbus.patch: new patch, stolen upstream. Fix the D-Bus + configuration so that the applet can actually talk to the helper. + * 06_clock_permissions.patch: new patch. Fix the security hole in the + PolicyKit configuration that otherwise allows everyone to modify the + system time. + * Recommend policykit-gnome. + + -- Josselin Mouette Tue, 07 Apr 2009 12:07:19 +0200 + +gnome-panel (2.24.2-3) experimental; urgency=low + + * Recommend gnome-icon-theme 2.24. + * Bump gnome-menus dependency to match the build-dependency. + * 02_panel_logout.patch: revert the logout code to the version + without the gnome-session 2.24 requirement. + * 03_switch-user_lock.patch, 04_gnome-panel-logout.patch: re-add the + two patches that we applied on top of this old code. Update the + latter to other code changes. + * 70_relibtoolize.patch: regenerated. + * Include patch-translations.mk; bump gnome-pkg-tools requirement to + 0.14. + * Use it to add translations for 02_panel_logout.patch. + + Add panel-logout.c to POTFILES.in so that it is translated. + * Add 72 translations from the gnome-panel 2.22 sources. + + -- Josselin Mouette Sun, 28 Dec 2008 03:39:24 +0100 + +gnome-panel (2.24.2-2) experimental; urgency=low + + * 10_requires_private.patch: removed, it breaks applets builds since + these dependencies are actually part of the expected API. + + -- Josselin Mouette Fri, 26 Dec 2008 21:49:46 +0100 + +gnome-panel (2.24.2-1) experimental; urgency=low + + [ Emilio Pozuelo Monfort ] + * debian/libpanel-applet2-doc.doc-base: fix section. + + [ Josselin Mouette ] + * Relax the build-dependency on scrollkeeper. + + [ Loic Minier ] + * Use lt-nl in version compare instead of testing for $2 in postinst. + + [ Josselin Mouette ] + * New upstream release. + + Opens evolution on the correct day. Closes: #366970. + * Update build-dependencies and -dev dependencies accordingly; enable + PolicyKit support. + * 02_switch-user_lock.patch, 03_gnome-panel-logout.patch: dropped, + obsolete. + * 08_clock_applet_event.patch: updated to apply cleanly. + * 10_appointment_colors.patch: dropped, merged upstream. + * 70_relibtoolize.patch: updated for the new version. + * 10_requires_private.patch: new patch; use Requires.private in + libpanel-applet. + * Recommend gvfs for g_app_info_launch_uris to work. + * Don’t build-depend on -1 revisions. + * Install PolicyKit files. + + -- Josselin Mouette Fri, 26 Dec 2008 17:52:36 +0100 + +gnome-panel (2.22.2-1) experimental; urgency=low + + [ Josselin Mouette ] + * Don’t install /etc/gconf, it is already in /usr/share/gconf. + * Require libedataserver1.2-dev 1.11.2. Closes: #485602. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + debian/patches/90_dont-cleanup-calendard-backend-when-not-loaded.patch: + - Dropped, merged upstream. + + debian/patches/70_relibtoolize.patch: + - Updated for the new version. + * debian/control.in: + + Update Standards-Version to 3.8.0, no additional changes needed. + + -- Sebastian Dröge Wed, 25 Jun 2008 08:37:53 +0200 + +gnome-panel (2.22.1.3-2) experimental; urgency=low + + * debian/patches/10_appointment_colors.patch + - Added. Fixes appointment colors to be different in evolution and the + clock applet (gbz #503581) + + -- Sjoerd Simons Fri, 25 Apr 2008 14:52:44 +0200 + +gnome-panel (2.22.1.3-1) experimental; urgency=low + + [ Loic Minier ] + * Refresh patches 02_switch-user_lock, 03_gnome-panel-logout, + 60_caldav-clock-appointments and 99_ltmain_as-needed to apply cleanly. + * New patch, 90_dont-cleanup-calendard-backend-when-not-loaded, avoids + crashing when shutting down evolution forcefully as intlclock tries to + cleanup data from the calendar backend it didn't load; GNOME #378854. + + [ Sjoerd Simons ] + * New upstream release + * debian/patches/03_gnome-panel-logout.patch + debian/patches/09_default_icons.patch + debian/patches/70_relibtoolize.patch + debian/patches/90_dont-cleanup-calendard-backend-when-not-loaded.patch + - Refreshed to apply again + * debian/patches/60_caldav-clock-appointments: + - Removed. Merged upstream + - Refreshed + * debian/patches/80_from_bugzilla_use_correct_current_timezone.patch: + - Removed. Merged upstream + + [ Sebastian Dröge ] + * New upstream release: + + Fixes FTBFS with newer libgweather (Closes: #476668). + + debian/control.in: + - Require libgweather-dev (>= 2.22.1). + + -- Sebastian Dröge Sat, 19 Apr 2008 20:13:26 +0200 + +gnome-panel (2.22.0-1) experimental; urgency=low + + * New upstream stable release: + + Upload to experimental first because of intrusive changes. + + debian/control.in: + - Update build dependencies and dependencies. + + debian/patches/05_missing_includes.patch: + - Dropped, merged upstream. + + debian/patches/03_gnome-panel-logout.patch, + debian/patches/70_relibtoolize.patch: + - Updated for the new version. + + debian/gnome-panel-data.install: + - Update paths. + + debian/patches/08_clock_applet_event.patch: + - Show multi day events not only on the first day. Patch taken from + the Ubuntu package. + + debian/patches/09_default_icons.patch: + - Show an default icon for .desktop files that don't have one. Patch + taken from the Ubuntu package. + + debian/patches/80_from_bugzilla_use_correct_current_timezone.patch: + - Use the correct current timezone. Patch taken from the Ubuntu package. + + -- Sebastian Dröge Mon, 17 Mar 2008 13:14:39 +0100 + +gnome-panel (2.20.3-3) unstable; urgency=low + + * 03_gnome-panel-logout.patch: correctly call gtk_main_quit to avoid + leaking processes, d’uh. Closes: #466070. + + -- Josselin Mouette Sat, 16 Feb 2008 17:52:30 +0100 + +gnome-panel (2.20.3-2) unstable; urgency=low + + [ Loic Minier ] + * Update patch 60_caldav-clock-appointments to not use a colon for now, it + seems it's encoded in the URI in some way; closes: #454318, #462026, + #463780. + + -- Josselin Mouette Sat, 16 Feb 2008 03:03:36 +0100 + +gnome-panel (2.20.3-1) unstable; urgency=low + + [ Loic Minier ] + * New patch, 60_caldav-clock-appointments, allows display of caldav:// + calendars in clock applet; thanks Roland Mas; closes: #454318. + + [ Josselin Mouette ] + * Switch to quilt for patch handling; build-depend on quilt. + * Refresh patches to apply cleanly. + * 03_gnome-panel-logout.patch: new patch; build a gnome-panel-logout + binary that can be used to invoke the logout window from other + programs. + * 70_relibtoolize.patch: relibtoolize the whole. + * 99_ltmain_as-needed.patch: updated to match the changes. + + [ Sebastian Dröge ] + * New upstream release with translation updates only. + * 70_relibtoolize.patch: regenerated. + * Update Standards-Version to 3.7.3, no additional changes needed. + + -- Sebastian Dröge Sat, 12 Jan 2008 06:56:51 +0100 + +gnome-panel (2.20.2-2) unstable; urgency=low + + * debian/gnome-panel-data.postinst: + + Don't fail if removing a directory fails because it doesn't exist + (Closes: #453881). + + -- Sebastian Dröge Sun, 02 Dec 2007 11:51:41 +0100 + +gnome-panel (2.20.2-1) unstable; urgency=low + + [ Josselin Mouette ] + * gnome-panel-data.post*: cleanup. + * Remove the menu methods and everything related. Closes: #447474. + * gnome-panel-data.postinst: remove these files upon upgrade, and + purge /var/lib/gnome/Debian as well. + + [ Sebastian Dröge ] + * New upstream bugfix release with translation updates. + + -- Sebastian Dröge Sat, 01 Dec 2007 18:24:51 +0100 + +gnome-panel (2.20.1-1) unstable; urgency=low + + * New upstream bugfix release. + + -- Sebastian Dröge Tue, 30 Oct 2007 15:25:18 +0100 + +gnome-panel (2.20.0.1-3) unstable; urgency=low + + * 02_switch-user_lock.patch: don't call gtk_window_get_screen on an + already destroyed object. + + -- Josselin Mouette Sat, 13 Oct 2007 00:13:54 +0200 + +gnome-panel (2.20.0.1-2) unstable; urgency=low + + * 02_switch-user_lock.patch: new patch; lock screen when switching + user. Closes: #433259 + * Don't run dh_makeshlibs for gnome-panel. + + -- Josselin Mouette Sun, 07 Oct 2007 04:16:59 +0200 + +gnome-panel (2.20.0.1-1) unstable; urgency=low + + [ Josselin Mouette ] + * gnome-panel recommends alacarte (closes: #437320, #437335). + + [ Sebastian Dröge ] + * New upstream release. + * Upload to unstable, drop check-dist include. + * debian/control.in: + + Add libglib2.0-dev (>= 2.13.0) dependency to the -dev package (taken + from Ubuntu). + + [ Loic Minier ] + * Drop the version in the scrollkeeper dependency. + + -- Loic Minier Sun, 23 Sep 2007 20:41:59 +0200 + +gnome-panel (2.19.5-1) experimental; urgency=low + + * New upstream release series; these are development releases, the API may + still change incompatibly; no API change in this release though. + - Target at experimental; include check-dist. + - Build-dep on libglib2.0-dev (>= 2.13.0), bump up build-dep and dep on + libgtk2.0-dev to >= 2.11.3, bump up libwnck-dev build-dep to >= 2.19.5. + - Build-dep on evolution-data-server-dev for evolution-data-server-1.2.pc + and on libx11-dev for x11.pc. + - Drop patch 02_custom-launcher-icon, fixed differently upstream. + - Drop patch 06_gksu_time_admin and pass --with-clock-time-utility="gksu + time-admin" to configure instead. + - Bump shlibs to >= 2.19.3 (from Ubuntu). + - Update install files and drop obsolete libpanel-applet2-dbg.install. + * Include CDBS' utils. + + -- Loic Minier Wed, 11 Jul 2007 15:06:37 +0200 + +gnome-panel (2.18.3-1) unstable; urgency=low + + * New upstream stable release; no API change; bug fixes and translations. + * Don't pass --dbg-package to dh_strip as we build-dep on a cdbs >= 0.4.37. + + -- Loic Minier Fri, 06 Jul 2007 22:34:43 +0200 + +gnome-panel (2.18.2-2) unstable; urgency=low + + [ Josselin Mouette ] + * 06_gksu_time_admin.patch: check that the command called by gksu + exists (closes: #427714). + * 99_ltmain_as-needed.patch: get --as-needed back to work. + + [ Guilherme de S. Pastore ] + * debian/control.in: revamp the package descriptions. + + -- Guilherme de S. Pastore Mon, 25 Jun 2007 23:00:00 -0300 + +gnome-panel (2.18.2-1) unstable; urgency=low + + * New upstream stable release; no API change. + * Misc cleanups; drop obsolete snippets in maintainer scripts. + + -- Loic Minier Mon, 28 May 2007 16:49:33 +0200 + +gnome-panel (2.18.1-2) unstable; urgency=low + + [ Loic Minier ] + * Fix duplicate build-dep on libgnome-menu-dev. + + [ Josselin Mouette ] + * Depend on gnome-icon-theme 2.18 (closes: #420553). + + [ Loic Minier ] + * Downgrade the gnome-icon-theme dependency to a Recommends; other icon + themes work fine with gnome-panel 2.18. + + [ Sebastian Dröge ] + * 01_panel_submenus.patch: Use correct menu file filenames to allow adding + submenus as menu to the panel (Closes: #422827). Thanks to Andreas Degert + for the patch. + + [ Sven Arvidsson ] + * New patch, 06_gksu_time_admin; use gksu to launch time-admin; from Ubuntu + (Closes: #412074) + + [ Josselin Mouette ] + * 02_custom-launcher-icon.patch: patch from Ubuntu to provide a + default icon for custom application launchers (closes: #422401). + + -- Josselin Mouette Sat, 19 May 2007 17:26:11 +0200 + +gnome-panel (2.18.1-1) unstable; urgency=low + + [ Riccardo Setti ] + * New upstream release; no API change. + - Added libpango1.0-dev as build-dep. + - Built with --with-in-process-applets=all. + - Dropped 01_default-setup_evolution.patch, new version of evolution + doesn't ship a versioned .desktop file. + - Dropped 02_menu_initial_size.patch, applied upstream. + + [ Loic Minier ] + * Add a libedataserver1.2-dev (>= 1.2.0) build-dep. + * New upstream stable release; no API change. + * Upload to unstable; drop check-dist include. + * Wrap build-deps and deps. + * Add a ${misc:Depends}. + * Only run update-gconf-defaults if it's available. + * Use http in copyright. + * Set LDFLAGS directly instead of via DEB_CONFIGURE_SCRIPT_ENV; build-dep on + cdbs >= 0.4.41. + * Cleanups. + * Take advantage of the applets rename to stop shipping *.la files. + + -- Loic Minier Sun, 22 Apr 2007 18:43:41 +0200 + +gnome-panel (2.16.3-1) experimental; urgency=low + + [ Josselin Mouette ] + * Remove 04_menus_rename.patch. + * Build-depend on libgnome-menus-dev 2.16.1-1. + * 01_default-setup_evolution.patch: call evolution-2.8.desktop, as + evolution.desktop doesn't exist (closes: #404878). + * 02_menu_initial_size.patch: stolen from the SVN. Fix for the arrows + appearing in a menu when installing new applications. See Bugzilla + #331780. + + [ Loic Minier ] + * Add a get-orig-source target to retrieve the upstream tarball. + * Include the new check-dist Makefile to prevent accidental uploads to + unstable; bump build-dep on gnome-pkg-tools to >= 0.10. + * New upstream release; no API change. + - Drop patch 10_panel-transparency-after-resolution-change, merged + upstream. + * Bump up libgnomeui-dev build-dep to >= 2.16.0-2 to make the package + autobuildable. + + -- Loic Minier Mon, 12 Mar 2007 11:42:00 +0100 + +gnome-panel (2.16.2-1) experimental; urgency=low + + * New upstream release. + * Require intltool 0.35.0. + * Update build-dependencies and -dev dependencies. + * Build-depend on gtk-doc-tools. + * Generate less strict shlibs for the library. + * Rename the -dbg package to gnome-panel-dbg and include all debugging + symbols in this package. + * Switch to debhelper mode 5, build-depend accordingly. + * Don't generate cdbs build-depends automatically, thanks. + * Use ${gnome:Version} and ${gnome:NextVersion}. + * Call clean-la.mk and gnome-version.mk. + * Require gnome-pkg-tools 0.7. + * Regenerate the Debian manpages to remove French iso-8859-1 text. + + -- Josselin Mouette Sun, 3 Dec 2006 23:25:17 +0100 + +gnome-panel (2.14.3-3) unstable; urgency=low + + * Sync with overrides: set libpanel-applet2-dbg's priority to extra. + * Fix upstream version computation to allow "-" in upstream versions. + * New patch, 10_panel-transparency-after-resolution-change, to fix wrong + geometry calculation of the root window after a resolution change which + broke gnome-panel transparency; taken from GNOME #353781; patch by + bugreports@nn7.de; thanks Soeren Sonnenburg. + + -- Loic Minier Fri, 24 Nov 2006 14:31:19 +0100 + +gnome-panel (2.14.3-2) unstable; urgency=low + + [ Josselin Mouette ] + * Move menu-xdg to a Depends: instead of a Recommends: + (closes: #322517). + Rationale: people who don't want the Debian menu can remove "menu" + and the "empty menu" bug has been fixed some time ago. + + [ Loic Minier ] + * Only update-gconf-defaults on removal, not on purge. (Closes: #387925) + * Cleanup postinst and postrm. + + -- Loic Minier Sun, 17 Sep 2006 21:11:15 +0200 + +gnome-panel (2.14.3-1) unstable; urgency=low + + * New upstream release; no API changes. + + -- Loic Minier Tue, 8 Aug 2006 11:05:53 +0200 + +gnome-panel (2.14.2-2) unstable; urgency=low + + * Install default entries properly (closes: #369858). + + rules: move the entries to /usr/share/gconf/defaults. + + control.in: depend on gconf2 2.14.0-2 instead of ${misc:Depends}. + + Call update-gconf-defaults in postinst and postrm. + + gnome-panel-data.postinst: recursively unset the entries in /etc. + From now on, the administrator will be able to use this place to + customize the default panel layout. + + -- Josselin Mouette Thu, 3 Aug 2006 00:01:42 +0200 + +gnome-panel (2.14.2-1) unstable; urgency=low + + [ Josselin Mouette ] + * Remove the dependency on this broken gamin package, and remove fam + as well as gnome-menus now use gnome-vfs as a backend + (closes: #349835, #367094, #351093). + + [ Loic Minier ] + * Make gnome-panel Recommend evolution-data-server. (Closes: #372567) + * Drop the useless libnspr4-dev build-dep, thanks Steve Langasek. + [debian/control, debian/control.in] + * New upstream release. + - Bump up libgnomevfs2-dev build-dep to >= 2.14.2. + [debian/control, debian/control.in] + * Use ${binary:Version} instead of ${Source-Version}. + * Add ${misc:Depends}. + * Update watch file to track stable series. + + -- Loic Minier Sat, 24 Jun 2006 11:14:15 +0200 + +gnome-panel (2.14.1-1) unstable; urgency=low + + [ Guilherme de S. Pastore ] + * New upstream release. + + * debian/control.in, debian/control: + - updated e-mail address. + - updated Standards-Version to 3.7.2. + - updated build dependencies according to configure.in. + - changed build-dep on libnspr-dev to libnspr4-dev to use xulrunner. + + * debian/patches/06_sync_clear_documents.patch: + - dropped; libegg updated upstream. + + * debian/patches/99_reautogenization.patch: + - dropped; the gnome-panel maintainer runs a Debian derivative. + + [ Marco Cabizza ] + * debian/control.in: + - changed build-dep on deprecated libpng3-dev to libpng12-dev. + + [ Ross Burton ] + * Build-depend on libecal1.2-dev, not libedata-cal1.2-dev + + [ Josselin Mouette ] + * Make the package binNMU-safe. + - Build-depend on dpkg-dev 1.13.19. + - Use ${source:Version}. + * Remove a useless ${Source-Version}. + + -- Guilherme de S. Pastore Mon, 8 May 2006 15:54:43 -0300 + +gnome-panel (2.12.3-2) unstable; urgency=low + + * Simple rebuild to get rid of references to Xcursor.la and Xrender.la. + + -- Loic Minier Sun, 23 Apr 2006 21:31:36 +0200 + +gnome-panel (2.12.3-1) unstable; urgency=low + + [ Guilherme de S. Pastore ] + * debian/control.in: + - General cleanups + - Added the alternative on x-terminal-emulator back, as gnome-panel + obeys the GNOME prefered applications settings. + + [ Loic Minier ] + * Depend on gamin | fam since gnome-vfs deps are not enough to ensure it's + there. (Closes: #353164) + [debian/control, debian/control.in] + + [ Sjoerd Simons ] + * New upstream release + * Let libpanel-applet2-dev depend on liborbit2-dev >= 2.12.4. It defines the + new ORBIT2_MAYBE_CONS macro the code generator uses. (Closes: #350883) + * debian/patches/99_reautogenization.patch + + Updated. + + -- Sjoerd Simons Mon, 20 Feb 2006 22:56:36 +0100 + +gnome-panel (2.12.2-3) unstable; urgency=low + + * Upload to unstable (Closes: #347881) + + [ Josselin Mouette ] + * Suggest gnome-terminal only, as x-terminal-emulator won't be used + (closes: #291058). + + -- Guilherme de S. Pastore Fri, 13 Jan 2006 13:40:37 -0200 + +gnome-panel (2.12.2-2) experimental; urgency=low + + * Build-depend on libedataserverui1.2-dev (>= 1.3.0), so control-center and + gnome-panel can't be build with conflicting e-d-s libraries. + + -- Sjoerd Simons Tue, 27 Dec 2005 19:54:59 +0100 + +gnome-panel (2.12.2-1) experimental; urgency=low + + * New upstream release + * debian/patches/02_panel-menu-items.c.patch: + - dropped; applied upstream + * Don't build on a separate directory, it breaks gnome-doc-utils + + -- Guilherme de S. Pastore Wed, 30 Nov 2005 14:30:20 -0200 + +gnome-panel (2.12.1-2) experimental; urgency=low + + * New maintainer + Thanks for all your work, Marc! + + * debian/patches/06_sync_clear_documents.patch: + - patch from upstream CVS to force update when Gamin/FAM + notification is not available (Closes: #319800, #330847) + + -- Guilherme de S. Pastore Fri, 11 Nov 2005 20:54:11 -0200 + +gnome-panel (2.12.1-1) experimental; urgency=low + + [ Gustavo Noronha Silva ] + * New upstream release + * debian/patches/01_defaults_add_notifarea.patch, + debian/patches/02_clockapplet_reload_timezone.patch, + debian/patches/03_libpanel-applet_X11_link_missing.patch + - removed, applied upstream or fixed otherwise + * debian/patches/02_panel-menu-items.c.patch: + - added, from Ubuntu's package packaging patch, which added it + from GNOME's bugzilla #315322 + * debian/patches/99_reautogenization.patch: + - updated with: + libtoolize -c -f --automake && aclocal-1.9 && autoheader && \ + automake-1.9 -acf && autoconf && rm -rf autom4te.cache + * debian/patches/04_menus_rename.patch: + - updated + * debian/rules: + - disable scrollkeeper on build, based on Ubuntu's change + * debian/watch: + - updated for 2.12 major + * debian/control.in: + - updated Build-Depends according to Ubuntu's package and on the + upstream package's configure.in pkgconfig stuff + + [ Guilherme de S. Pastore ] + * debian/control.in: + - moved menu-xdg from Suggests to Recommends (Closes: #315782) + + [ Loic Minier ] + * Clarify "Copyright" versus "License". + + -- Gustavo Noronha Silva Sat, 29 Oct 2005 19:54:10 -0200 + +gnome-panel (2.10.2-2) UNRELEASED; urgency=low + + * Menu transition, part 1 and 2: move from #!/usr/sbin/install-menu to + #!/usr/bin/install-menu. [debian/gnome-vfolder-user, + debian/gnome-panel-data.menu-method.experimental, + debian/gnome-panel-data.menu-method] + + -- Loic Minier Thu, 20 Oct 2005 16:33:49 +0200 + +gnome-panel (2.10.2-1) unstable; urgency=low + + * New upstream release + * Removed 06_fr_po_fix.patch now included upstream. + * Re-autogen-ized. + * Increased Standards-Version (no changes needed). + + -- Marc Dequènes (Duck) Tue, 28 Jun 2005 23:30:00 +0200 + +gnome-panel (2.10.1-5) unstable; urgency=medium + + * Don't overwrite DEB_CONFIGURE_SCRIPT_ENV completely. + * Remove most replaces and conflicts fields, they are unused now. + * gnome-panel only Recommends: gnome-session. + * gnome-panel-data only Recommends: gnome-panel (breaking a dependency + cycle). + + -- Josselin Mouette Sat, 25 Jun 2005 19:45:52 +0200 + +gnome-panel (2.10.1-4) unstable; urgency=low + + * Replaced Suggests on menu by menu-xdg (Closes: #313011). + * Added patch to fix missing includes from Dann Frazier (Closes: + #314692). + * Fix fr translation s/Environnement de bureau/Bureau/ (from GNOME + CVS) (Closes: #313351). + * Now building in 'debian/build/' directory (cleaner). + * Pass --as-needed to LDFLAGS to reduce dependencies if possible. + * Disabled evolution-data-server support on Hurd (thanks to Michael + Banck). + + -- Marc Dequènes (Duck) Sun, 19 Jun 2005 11:51:40 +0200 + +gnome-panel (2.10.1-3) unstable; urgency=low + + * Upload to unstable (Closes: #312609). + * Added patch to solve menu files conflicts with other desktop + environnements (Closes: #307098) (thanks to seb128). + * Removed clean rule hack to work around #299010. + + -- Marc Dequènes (Duck) Tue, 7 Jun 2005 23:44:00 +0200 + +gnome-panel (2.10.1-2) experimental; urgency=low + + * Some more build-depends, depends, and suggests update (gnome-about + and new gnome-menus are now dependencies). + * Fixed in 2.10 branch : + + drawer does not open at the right place on dual-screen display + (Closes: #260480). + + click repeat rate in calendar view for clock applet is too fast + (Closes: #272885). + + panel won't scale some SVGs properly (Closes: #275215). + + translation error in pt-BR (Closes: #293656). + * Removed 'gnome-panel-screenshot' man page (command moved to gnome- + utils). + * Fixed stupid cut-and-paste mistake in 'debian/copyright'. + + -- Marc Dequènes (Duck) Sun, 17 Apr 2005 02:25:16 +0200 + +gnome-panel (2.10.1-1) experimental; urgency=low + + * New upstream release + * Removed the following patches now included upstream : + + 03_french_typo.patch + + 06_translation_silliness.patch + + 08_improved_run_in_term_speed.patch + * Mass build-depends and depends update. + * Patched libpanel-applet to correctly link with X11. + * Re-autogen-ized. + * Removed '/usr/share/gnome-panel' not used anymore in 'debian/gnome- + panel-data.install'. + * Updated 'debian/watch'. + + -- Marc Dequènes (Duck) Sun, 10 Apr 2005 21:06:35 +0200 + +gnome-panel (2.8.3-1) unstable; urgency=medium + + * Marc Dequènes: + + Rebuilt with fixed libgnomeui without non-free howl stuff + (Closes: #298887) (thus urgency). + + Used revised timezone patch for clock applet made by Stephen Gildea + (Closes: #294591). + + Made load of gconf config quiet (Closes: #293204). + + Readded 'userprefix' in menu-method as it broke 'favorites://' in + nautilus (Closes: #295091). + + Added a menu-method to produce a customisable Debian menu made by + Bill Allombert (not activated by default, see README.Debian) + (Closes: #259400). + * Sjoerd Simons: + + New upstream release + + debian/patches/07_empty_desktop_keys.patch + - Removed. Merged upstream. + + -- Marc Dequènes (Duck) Sun, 13 Mar 2005 11:01:55 +0100 + +gnome-panel (2.8.2-2) unstable; urgency=medium + + * urgency high because menu bug is very bad for sarge, and custom + lauchers are an important feature which is unfortunatly broken. + * menu : (thanks to Bill Allombert) + + updated suggests and added conflicts for nice woody transition + (Closes: #291085). + + removed unuseful 'userprefix' in menu-method. + * Added patches : + + custom lauchers fix from Sjoerd Simons (Closes: #291185). + + run-application typing completion speed improvements (from + gnomezilla) (Closes: #287120). + * Corrected doc-base index location (Closes: #285650). + * Corrected descriptions to please lintian. + + -- Marc Dequènes (Duck) Fri, 28 Jan 2005 23:58:50 +0100 + +gnome-panel (2.8.2-1) unstable; urgency=low + + * New upstream release : + + no longer respond to delete event (Closes: #254972). + * CDBS Tweaks. + * Regenerated '05_clockapplet_reload_timezone.patch'. + * Regenerated relibtoolize patch. + * Updated policy to 3.6.1.1 (no changes needed). + * Patched or and uk translations : some translators should _really_ + learn how to read english. + + -- Marc Dequènes (Duck) Fri, 10 Dec 2004 02:31:05 +0100 + +gnome-panel (2.8.1-2) unstable; urgency=low + + * Upload to unstable. + + -- Sebastien Bacher Fri, 19 Nov 2004 13:14:18 +0100 + +gnome-panel (2.8.1-1) experimental; urgency=low + + * New upstream release. + * Removed '03_define_types.patch' not necessary anymore. + * Regenerated relibtoolize patch. + * Reintroduced '04_french_typo.patch' removed by mistake. + + -- Marc Dequènes (Duck) Thu, 14 Oct 2004 01:28:31 +0200 + +gnome-panel (2.8.0.1-1) experimental; urgency=low + + * New upstream release : + + clock applet : fixed padding on a 24px panel (Closes: #258323). + + fix panel orientation badly set/remembered (Closes: #216997). + + fix freakiness with autohiding and snap-to-screen-edge + (Closes: #255608). + * [JHM] Added devhelp doc symlink (Closes: #273491) + * Dropped '04_french_typo.patch' now included upstream. + + -- Marc Dequènes (Duck) Sun, 3 Oct 2004 15:09:48 +0200 + +gnome-panel (2.8.0-2) experimental; urgency=low + + * Version 2.8.0 corrects : + + run in terminal works again (Closes: #262487). + + custom launcher command browser was lacking navigation entries + (Closes: #254443). + * Enabled evolution-data-server support (Closes: #272061). + * Updated versions in 'debian/control'. + + -- Marc Dequènes (Duck) Wed, 22 Sep 2004 00:50:02 +0200 + +gnome-panel (2.8.0-1) experimental; urgency=low + + * New upstream release. + * Updated watch file. + * Regenerated relibtoolize patch. + * Made build idempotent (typo patch for 'po/fr.po' was causing + problems) + * Added 'autotools-dev' to build dependencies to take advantage of the + CDBS automatic 'config.*' management. + + -- Marc Dequènes (Duck) Tue, 14 Sep 2004 21:16:42 +0200 + +gnome-panel (2.7.92-1) experimental; urgency=low + + * New upstream release : + + correct pointer detection problem on multiscreen causing several + problems like autihiding not always working (Closes: #178710) + + new add applet dialog (Closes: #247982) (bug obsoleted) + * NOTICE : panel settings dialog was removed upstream, use gconf + editor instead. + * Build-Depends/Depends versions update (Closes: #261327). + * Ported changes from 2.6.2-2 & 2.6.2-3. + * Removed 03_po_gu_fix.patch now included upstream. + * Patch added to correct a typo in french translation (Closes: + #268618). + * Corrected quoting problem in description (Closes: #244071). + * Patch from gnomezilla to reload timezone in clock applet (Closes: + #61611). + * Regenerated relibtoolize patch. + + -- Marc Dequènes (Duck) Sun, 12 Sep 2004 17:57:49 +0200 + +gnome-panel (2.7.91.1-1) experimental; urgency=low + + * New upstream development release. + * [debian/control.in] Bumped libwnck build dependency as per configure.in. + * [debian/patches/02_relibtoolise.patch] Regenerated. + * [debian/gnome-panel-data.install] Removed + debian/tmp/usr/share/control-center-2.0 . + * [debian/rules] Ensure at build time that all symbols are resolvable; make + the linker work a bit harder to speed up dynamic loading. + + -- J.H.M. Dassen (Ray) Sat, 21 Aug 2004 13:22:47 +0200 + +gnome-panel (2.7.4.1-1) experimental; urgency=low + + * New upstream release : + + updated translations (Closes: #247982, #247984). + * Regenerated relibtoolize patch. + + -- Marc Dequènes (Duck) Wed, 21 Jul 2004 18:24:00 +0200 + +gnome-panel (2.7.3-1) experimental; urgency=low + + * New upstream release + * Regenerated relibtoolize patch. + + -- Marc Dequènes (Duck) Tue, 6 Jul 2004 14:38:10 +0200 + +gnome-panel (2.7.1-1) experimental; urgency=low + + * New upstream release + + -- Marc Dequènes (Duck) Thu, 24 Jun 2004 20:30:55 +0200 + +gnome-panel (2.6.2-1) unstable; urgency=low + + * New upstream release. + * Updated some Build-Depends versions. + * Regenerated '02_relibtoolise.patch'. + + -- Marc Dequènes (Duck) Sat, 19 Jun 2004 11:14:06 +0200 + +gnome-panel (2.6.1-4) unstable; urgency=low + + * GNOME Team Upload. + * Upload in unstable. + * debian/control.in: + + Don't Build-Depends on evolution-data-server since this package is + not in unstable + + -- Sebastien Bacher Wed, 26 May 2004 16:38:41 +0200 + +gnome-panel (2.6.1-3) experimental; urgency=low + + * GNOME Team Upload. + * Rebuilt with new evolution-data-server (Closes: #250807). + + -- Sebastien Bacher Tue, 25 May 2004 19:38:22 +0200 + +gnome-panel (2.6.1-2) experimental; urgency=low + + * Added missing Build-Depends on 'libxmu-dev' (Closes: #247285). + + -- Marc Dequènes (Duck) Thu, 20 May 2004 18:39:24 +0200 + +gnome-panel (2.6.1-1) experimental; urgency=low + + * New upstream release : + - fixed visibility problem with solid-color background + (Closes: #179871). + * Recreated and split relibtoolize patch. + * Improved tight versioning rules. + * Deactivated gtk-doc documentation regeneration (see GNOME Policy on + Alioth for details). + * Removing all remaining 'Makefile' files in clean rule. + + -- Marc Dequènes (Duck) Wed, 21 Apr 2004 02:47:43 +0200 + +gnome-panel (2.6.0-5) experimental; urgency=low + + * Gustavo Noronha Silva: + - debian/gnome-panel-data.postinst: + + add a call to gconftool-2 to --load the .entries file which + contains the default panel configuration + + -- Gustavo Noronha Silva Thu, 15 Apr 2004 22:14:40 -0300 + +gnome-panel (2.6.0-4) experimental; urgency=low + + * Added missing Replaces for 'libpanel-applet2-dev' on 'gnome-panel- + data' for 2.4->2.6 transition. + * J.H.M. Dassen (Ray): + - [debian/patches/01_relibtoolise.patch] New. Cut down direct + dependencies. + * Jordi Mallach: + - debian/control.in: build-depend on an epoched libglade2-dev. + - debian/rules: don't let clean fail if find returns error. + + -- Marc Dequènes (Duck) Fri, 9 Apr 2004 04:02:26 +0200 + +gnome-panel (2.6.0-3) experimental; urgency=low + + * Rebuilt to use 'evolution-data-server'. + + -- Marc Dequènes (Duck) Mon, 29 Mar 2004 23:56:27 +0200 + +gnome-panel (2.6.0-2) experimental; urgency=low + + * Corrected 'gnome-applet' tight dependency on 'libpanel-applet2-0'. + * Corrected missing Build-Depends on 'cdbs'. + * Updated Depends & Recommends. + + -- Marc Dequènes (Duck) Sun, 28 Mar 2004 23:29:52 +0200 + +gnome-panel (2.6.0-1) experimental; urgency=low + + * New Maintainer (Closes: 238884). + * New upstream release: + + fix X resource leak (Closes: #235903). + + fix auto-open behaviour for drawers (Closes: #216577). + * Switched to CDBS. + * Updated Uploaders and using the 'gnome-pkg-tools' pkg. + * Added some Replaces/Conflicts for smoother upgrade. + * Compatibility level switched to 4, and old patches were deactivated. + * Cleaned dirty 'debian/*' made by CM, now using simple and clean CDBS + rules and '*.install' files. + * Improved 'debian/copyright'. + * Removed now unused 'go.uue' to genrate 'go.png'. + * 'debian/control', 'debian/changelog' and 'debian/copyright' are now + UTF-8 encoded. + + -- Marc Dequènes (Duck) Sun, 28 Mar 2004 23:21:32 +0200 + +gnome-panel (2.4.2-4) unstable; urgency=low + + * the right + + -- Christian Marillat Fri, 19 Mar 2004 15:39:39 +0100 + +gnome-panel (2.4.2-3) unstable; urgency=low + + * Remove DTD hack and update scrollkeeper dependency to 0.3.14-5 + * Add outputencoding="UTF-8" in menu-method file (Closes: #230804) + + -- Christian Marillat Sun, 8 Feb 2004 11:09:26 +0100 + +gnome-panel (2.4.2-2) unstable; urgency=low + + * Suggests gnome-system-tools for gnome-panel, needed if you want to set + up the system time (Closes: #229043) + + -- Christian Marillat Fri, 23 Jan 2004 11:52:49 +0100 + +gnome-panel (2.4.2-1) unstable; urgency=low + + * New upstream release. + * Remove 05_manpage patch, included by upstream + + -- Christian Marillat Fri, 16 Jan 2004 10:22:17 +0100 + +gnome-panel (2.4.1-7) unstable; urgency=low + + * debian/prerm Unregister schemas file from the database. + + -- Christian Marillat Fri, 9 Jan 2004 15:48:01 +0100 + +gnome-panel (2.4.1-6) unstable; urgency=low + + * Add a version (>= 2.4.0) to the gnome-applets recommends (Closes: #223550) + + -- Christian Marillat Wed, 31 Dec 2003 09:21:18 +0100 + +gnome-panel (2.4.1-5) unstable; urgency=low + + * Add a -dbg package for libpanel-applet2 library (Closes: #220734) + * Add missing manpages. + + -- Christian Marillat Sun, 7 Dec 2003 11:05:31 +0100 + +gnome-panel (2.4.1-4) unstable; urgency=low + + * Panel should conflicts with metacity <= 2.6.0 (Closes: #217122) + * Patch from bugzilla to fix duplicate entries in the help message (Closes: #183130) + * debian/control update build-dependecies to GNOME 2.4 packages (Closes: #217497) + + -- Christian Marillat Sat, 25 Oct 2003 09:54:07 +0200 + +gnome-panel (2.4.1-3) unstable; urgency=low + + * Register default panel configuration with gconftool (Closes: #216600) + + -- Christian Marillat Mon, 20 Oct 2003 01:19:20 +0200 + +gnome-panel (2.4.1-2) unstable; urgency=low + + * gnome-panel-data should replaces gnome-desktop-data (Closes: #216458) + * Rebuild to remove liblinc dependency in the -dev package + + -- Christian Marillat Sun, 19 Oct 2003 10:01:36 +0200 + +gnome-panel (2.4.1-1) unstable; urgency=low + + * New upstream release. + * Should suggest a terminal emulator for the run program dialog (Closes: #214650) + * Don't need to depends on xbase-clients + + -- Christian Marillat Sat, 18 Oct 2003 10:36:24 +0200 + +gnome-panel (2.2.2.2-2) unstable; urgency=low + + * Change userprefix in menu-method. You can access user generated Debian + menus with favorites:/// in nautilus + * Use theme folder icons for Debian menus (Closes: #207494) + * New patch to fix manpage entry for gnome-panel (Closes: #212037) + + -- Christian Marillat Sun, 21 Sep 2003 23:33:11 +0200 + +gnome-panel (2.2.2.2-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Tue, 15 Jul 2003 15:28:51 +0200 + +gnome-panel (2.2.2.1-2) unstable; urgency=low + + * Patch 04_drawer.c to fix a panel crash when a new drawer is added + (Closes: #198695) + + -- Christian Marillat Sat, 28 Jun 2003 14:35:49 +0200 + +gnome-panel (2.2.2.1-1) unstable; urgency=low + + * New upstream release + * Add a gnome-control-center (>= 2.2.2) dependency (Closes: #198371) + * New patch (01) to fix broken translation in bn.po (Closes: #193635) + + -- Christian Marillat Sun, 22 Jun 2003 15:44:58 +0200 + +gnome-panel (2.2.2-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Fri, 16 May 2003 17:45:28 +0200 + +gnome-panel (2.2.1-2) unstable; urgency=low + + * Only add longtitle as tooltip in Debian menu (Closes: #186697) + * Update section + * Add go icon + + -- Christian Marillat Sun, 13 Apr 2003 08:29:10 +0200 + +gnome-panel (2.2.1-1.1) unstable; urgency=low + + * zero source change NMU to resolve problems on ia64 that binary NMU caused + + -- Bdale Garbee Fri, 11 Apr 2003 02:13:24 -0600 + +gnome-panel (2.2.1-1) unstable; urgency=low + + * New upstream release. + * Remove notification applet patch + + -- Christian Marillat Tue, 11 Mar 2003 15:51:00 +0100 + +gnome-panel (2.2.0.1-2) unstable; urgency=low + + * Patch to fix the notification applet crash (Closes: #180133) + + -- Christian Marillat Mon, 17 Feb 2003 16:04:23 +0100 + +gnome-panel (2.2.0.1-1) unstable; urgency=low + + * New upstream release. + * Remove replaces libpanel-applet-dev in the -dev package. + + -- Christian Marillat Tue, 4 Feb 2003 14:36:28 +0100 + +gnome-panel (2.2.0-2) unstable; urgency=low + + * Conflicts with system-tray-applet (Closes: #178278) + * Add versioned conflicts for gnome-core (Closes: #178401) + + -- Christian Marillat Sat, 25 Jan 2003 23:52:18 +0100 + +gnome-panel (2.2.0-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Tue, 21 Jan 2003 15:33:47 +0100 + +gnome-panel (2.1.90.1-1) unstable; urgency=low + + * New upstream release. + * Add a quick-lounge-applet (<= 0.98-1) conflicts, this applet crash the panel. + * Launcher are restored properly (Closes: #172385) + * Menu panel doesn't disappears (Closes: #172848) + * Fixes panel hogging the CPU when hide_delay and show_delay are zero (Closes: #174002) + * Fix inbox monitor randomly displays wildly inaccurate info (Closes: #168877) + * debian/control Add yelp and gnome2-user-guide in Suggests for the panel + + -- Christian Marillat Sat, 18 Jan 2003 17:12:02 +0100 + +gnome-panel (2.0.11-3) unstable; urgency=low + + * Bump Standards-Version to 3.5.8 + + -- Christian Marillat Sat, 28 Dec 2002 17:55:58 +0100 + +gnome-panel (2.0.11-2) unstable; urgency=low + + * Move libpanel documentation in a -doc package (Closes: #171007) + + -- Christian Marillat Fri, 20 Dec 2002 16:18:00 +0100 + +gnome-panel (2.0.11-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Fri, 15 Nov 2002 14:40:58 +0100 + +gnome-panel (2.0.10-2) unstable; urgency=low + + * Upload to unstable + * Gnome-hints has been removed (Closes: #152335) + * Fix in clock update (Closes: #156401) + * Applets save their properties (Closes: #135569) + * No more buttons in the tasklist applet (Closes: #116205) + * Docklet has been removed (Closes: #137450) + * Launcher properties are now saved (Closes: #139827) + * Now menus are always sorted (Closes: #150649) + * kmail doesn't crash the panel (Closes: #146706) + * The tasklist isn't dynamic resizable (Closes: #89752) + * No more problem with windowmaker and the panel (Closes: #94592) + * No more duplicate entrie in the main menu (Closes: #97473) + * No more memory leak in the tasklist applet (Closes: #103880) + * Tasklist doen't display app titles (Closes: #112059) + * Netscape entry menu is fixed (Closes: #135992) + * No more "Fill window thumbnails" option in tasklist (Closes: #151134) + * Tooltips in the arrows panel are correctly displayed (Closes: #113642) + * Completion in run dialog work with ctrl-TAB (Closes: #75665) + * gmenu has been removed (Closes: #95014) + * menu have a mozilla entry (if mozilla is present) (Closes: #135993) + * Xemacs.desktop has been removed (Closes: #148500) + + -- Christian Marillat Mon, 28 Oct 2002 16:08:15 +0100 + +gnome-panel (2.0.10-1) experimental; urgency=low + + * New upstream release. + * gnome-panel should depends on xbase-clients for xrdb + * Add build-dependency for xbase-clients + + -- Christian Marillat Mon, 14 Oct 2002 16:47:55 +0200 + +gnome-panel (2.0.9-4) experimental; urgency=low + + * Upload with original tarball + + -- Christian Marillat Sun, 29 Sep 2002 17:45:08 +0200 + +gnome-panel2 (2.0.9-3) experimental; urgency=low + + * Upload without the 2 suffix + + -- Christian Marillat Sat, 28 Sep 2002 18:46:17 +0200 + +gnome-panel2 (2.0.9-2) experimental; urgency=low + + * Add libmpg3-dev in build-depends (Closes: #160758) + * Update to standards version 3.5.7 + * -dev package should depends on the same lib version + + -- Christian Marillat Mon, 16 Sep 2002 11:35:00 +0200 + +gnome-panel2 (2.0.9-1) experimental; urgency=low + + * New upstream release. + * Update lignome-ui-dev dependencies to 2.0.5-2 + + -- Christian Marillat Fri, 6 Sep 2002 13:50:51 +0200 + +gnome-panel2 (2.0.8-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Thu, 5 Sep 2002 19:00:46 +0200 + +gnome-panel2 (2.0.7-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Tue, 27 Aug 2002 11:19:52 +0200 + +gnome-panel2 (2.0.6-2) experimental; urgency=low + + * Add scrollkeeper in build-depends + * Build against the latest libgnomevfs2-dev 2.0.2-4 + + -- Christian Marillat Fri, 16 Aug 2002 17:36:42 +0200 + +gnome-panel2 (2.0.6-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 12 Aug 2002 19:44:49 +0200 + +gnome-panel2 (2.0.5-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Thu, 8 Aug 2002 16:46:21 +0200 + +gnome-panel2 (2.0.4-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 5 Aug 2002 19:35:26 +0200 + +gnome-panel2 (2.0.3-2) experimental; urgency=low + + * Recompiled against the latest lignome-vfs to remove libssl dependency. + + -- Christian Marillat Fri, 2 Aug 2002 17:14:51 +0200 + +gnome-panel2 (2.0.3-1) experimental; urgency=low + + * New upstream release. + * Remove gmenu entry in menu file (Closes: #153213) + * debian/menu s/panel/gnome-panel/ + + -- Christian Marillat Tue, 30 Jul 2002 17:08:21 +0200 + +gnome-panel2 (2.0.2-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 15 Jul 2002 15:31:05 +0200 + +gnome-panel2 (2.0.1-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 17 Jun 2002 16:07:40 +0200 + +gnome-panel2 (2.0.0-1) experimental; urgency=low + + * New upstream release. + * Replace "Distribution menu" by "Debian menu" + + -- Christian Marillat Mon, 10 Jun 2002 16:51:50 +0200 + +gnome-panel2 (1.5.24-2) experimental; urgency=low + + * Build against the latest libraries. + + -- Christian Marillat Sun, 9 Jun 2002 18:29:23 +0200 + +gnome-panel2 (1.5.24-1) experimental; urgency=low + + * New upstream release. + * Remove call to Internet DTD (Closes: #148899) + * Call scrollkeeper-update in gnome-panel-data2.postrm + + -- Christian Marillat Tue, 4 Jun 2002 17:22:35 +0200 + +gnome-panel2 (1.5.23-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Tue, 28 May 2002 15:51:18 +0200 + +gnome-panel2 (1.5.22-2) experimental; urgency=low + + * debian/rules Add GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 in install target. + * gnome-panel2 should depends on gnome-desktop-data + * debian/gnome-panel-data2.postinst check if schemas files are present + before calling gconftool-2 + + -- Christian Marillat Mon, 27 May 2002 16:01:57 +0200 + +gnome-panel2 (1.5.22-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 20 May 2002 21:58:18 +0200 + +gnome-panel2 (1.5.21-1) experimental; urgency=low + + * New upstream release. + * Add support for DEB_HOST_GNU_TYPE DEB_BUILD_GNU_TYPE and + DEB_BUILD_OPTIONS + + -- Christian Marillat Wed, 15 May 2002 20:39:24 +0200 + +gnome-panel2 (1.5.20-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Sun, 12 May 2002 14:25:08 +0200 + +gnome-panel2 (1.5.19-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 29 Apr 2002 20:51:20 +0200 + +gnome-panel2 (1.5.18-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 22 Apr 2002 16:41:41 +0200 + +gnome-panel2 (1.5.17-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Wed, 17 Apr 2002 15:46:23 +0200 + +gnome-panel2 (1.5.16-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 1 Apr 2002 22:40:37 +0200 + +gnome-panel2 (1.5.15-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Fri, 29 Mar 2002 17:01:04 +0100 + +gnome-panel2 (1.5.12-2) experimental; urgency=low + + * Add libwnck-dev in build-depends (Closes: #137954) + + -- Christian Marillat Wed, 13 Mar 2002 10:51:00 +0100 + +gnome-panel2 (1.5.12-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Tue, 5 Mar 2002 14:47:36 +0100 + +gnome-panel2 (1.5.11-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Tue, 26 Feb 2002 15:37:43 +0100 + +gnome-panel2 (1.5.10-2) experimental; urgency=low + + * Replace gettext by intltoo in build-depends + + -- Christian Marillat Mon, 25 Feb 2002 15:40:43 +0100 + +gnome-panel2 (1.5.10-1) experimental; urgency=low + + * new upstream release. + + -- Christian Marillat Mon, 18 Feb 2002 22:06:48 +0100 + +gnome-panel2 (1.5.9-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Fri, 15 Feb 2002 00:38:51 +0100 + +gnome-panel2 (1.5.7-1) experimental; urgency=low + + * New upstrema release. + + -- Christian Marillat Tue, 5 Feb 2002 14:41:01 +0100 + +gnome-core2 (1.5.4-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Sun, 20 Jan 2002 16:21:40 +0100 + +gnome-core (1.4.0.4-16) unstable; urgency=low + + * Fix typo in gnome-terminal.wrapper (Closes: #127768) + * Remove gnome-hint patche (Closes: #121390, #129184) + * debian/control Replace libpng-dev by libpng2-dev in Build-Depends + (Closes: #128377) + + -- Christian Marillat Mon, 14 Jan 2002 15:04:52 +0100 + +gnome-core (1.4.0.4-15) unstable; urgency=low + + * Build against the latest gnome-libs to update the libzvt2 dependency + (Closes: #127309, #127271) + * debian/control Replace libpng2-dev by libpng-dev in Build-Depends. + * debian/control Build-depends on libzvt-dev (>= 1.4.1.2-9) + + -- Christian Marillat Tue, 1 Jan 2002 15:27:43 +0100 + +gnome-core (1.4.0.4-14) unstable; urgency=low + + * Fix typo in gnome-terminal.1 (Closes: #123073) + * Fix base page for doc-base in libpanel-applet-dev package. + * Fix typo in gnome-help documentation (Closes: #126566) + * Apply patch to allows meta functionnality in gnome-terminal (Closes: #50427) + + -- Christian Marillat Thu, 27 Dec 2001 14:47:36 +0100 + +gnome-core (1.4.0.4-13) unstable; urgency=low + + * Default font for gnome-terminal is "fixed" only (Closes: #117126) + * Patch against gnome-hint.c Don't use gettext for font descriptor + (Closes: #116606) + * Patch against gnome-about/Makefile.am to use new gdk_pixbuf include path + (Closes: #120312) + * Revert my change on logout.c Only root can shutdown/reboot from the + panel (Closes: #119316, #120127) + + -- Christian Marillat Tue, 20 Nov 2001 11:36:05 +0100 + +gnome-core (1.4.0.4-12) unstable; urgency=low + + * gnome-wm honour --default-wm (Closes: #115668) + * Build against the latest gnome-libs + + -- Christian Marillat Sun, 21 Oct 2001 14:11:19 +0200 + +gnome-core (1.4.0.4-11) unstable; urgency=low + + * debian/control lynx comeback in Recommends (Closes: #114142) + * debian/control replaces xml-i18n-tools by intltool (Closes: #115024) + * Fix automake 1.5 errors. Thanks to Denis Barbier (Closes: #114369) + * Build against the latest orbit (Closes: #115309) + + -- Christian Marillat Fri, 12 Oct 2001 10:46:49 +0200 + +gnome-core (1.4.0.4-10) unstable; urgency=low + + * Fix typo in panel/panel.hints (Closes: #113590) + * Replace lynx by w3m (Closes: #113613) + * Move gnome-terminal.desktop in gnome-terminal package (Closes: #113736) + * Move gnome-help.desktop in gnome-help package + * debian:control Add Replaces: gnome-panel-data (<= 1.4.0.4-9) for above + * Patch against gsm/logout.c Now you can reboot/halt your machine from the + panel. This only work for root, because shutdown doesn't understand the + -a option. Read README.debian in gnome-panel package. + * debian/rules Remove less files in clean target (Closes: #114020) + + -- Christian Marillat Mon, 1 Oct 2001 11:34:06 +0200 + +gnome-core (1.4.0.4-9) unstable; urgency=low + + * Add Debian menu for panel and gmenu (Closes: #112176) + * Remove /var/lib/gnome on purge (Closes: #113005) + * Remove /etc/gnome/config on purge (Closes: #112994) + * Remove /etc/gnome on purge (Closes: #112995) + * debian/control replace cygnus-stylesheets by docbook-utils + + -- Christian Marillat Mon, 24 Sep 2001 18:39:19 +0200 + +gnome-core (1.4.0.4-8) unstable; urgency=high + + * High urgency, because the current release in testing has a missing + dependency on libpanel-applet0 and the panel package doesn't work if + libpanel-applet0 isn't installed (Closes: #111517) + * debian/control for gnome-help, move lynx from depends to recommends + (Closes: #109652) + * debian/control gnome-panel suggests fortune-mod (Closes: #110865) + * debian/control gnome-help suggests gnome-users-guide not + gnome-users-guide-en (Closes: #111200) + * Don't change cursor color (Closes: #97697) + * Change default font for gnome-terminal (Closes: #111319) + + -- Christian Marillat Fri, 7 Sep 2001 15:06:07 +0200 + +gnome-core (1.4.0.4-7) unstable; urgency=low + + * Fix path in gnome-session.1 (Closes: #107724) + * debian/*.sgml Use docbook 4.1 + * debian/control gnome-help-data Replaces gnome-terminal (<= 1.0.55-2) + (CLoses: #107948) + + -- Christian Marillat Wed, 8 Aug 2001 08:07:56 +0200 + +gnome-core (1.4.0.4-6) unstable; urgency=low + + * debian/rules for dh_makeshlibs replace libcapplet0 by libpanel-applet0 + (Closes: #105772) + + -- Christian Marillat Wed, 18 Jul 2001 19:02:59 +0200 + +gnome-core (1.4.0.4-5) unstable; urgency=low + + * Patch against gnome-edit to use EDITOR if the default gnome editor is + unavailable. + * Remove gnome-wm patch, and move the patched file in debian/ + * debian/gnome-wm Try to exec $WINDOW_MANAGER before x-window-manager + (Closes: #103430 + * New patch from Michael Urman to hide task names in tasklist_applet + (Closes: #104587) + + -- Christian Marillat Sat, 14 Jul 2001 16:58:12 +0200 + +gnome-core (1.4.0.4-4) unstable; urgency=low + + * Gnome-help Provides: man-browser, www-browser, info-browser + * Switch to debhelper V3 + * Change libraries versionning to (>= 1.4.0.2-3) instead of the latest + package number. + * Build-depends on groff-base instead of groff + + -- Christian Marillat Fri, 22 Jun 2001 17:02:37 +0200 + +gnome-core (1.4.0.4-3) unstable; urgency=low + + * New patch: Allows to save/load the keyboard secure state (Closes: #83028) + * New patch: Remove a warning in configure + * gnome-help replace gnome-panel-data (Closes: #99499) + * Build-depends on xml-i18n-tools (>= 0.8.4.cvs.20010530-1) (Close: #98784) + + -- Christian Marillat Sat, 2 Jun 2001 14:41:45 +0200 + +gnome-core (1.4.0.4-2) unstable; urgency=low + + * New patch: Replace Distribution by Debian in configuration dialog box. + * New patch: Upstream patch to allow Debian menu in default configuration. + * New patch: Fix some wrong path. + * Move gnome-feedback doc from gnome-help-data to gnome-core. + + -- Christian Marillat Tue, 15 May 2001 15:36:51 +0200 + +gnome-core (1.4.0.4-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Wed, 9 May 2001 23:56:27 +0200 + +gnome-core (1.4.0.3-2) unstable; urgency=low + + * Remove debugging code (/tmp/languages file) + + -- Christian Marillat Mon, 7 May 2001 16:48:18 +0200 + +gnome-core (1.4.0.3-1) unstable; urgency=low + + * New upstream release. + * New: tooltips for long task names in tasklist_applet (Closes: #63898) + + -- Christian Marillat Thu, 3 May 2001 15:51:58 +0200 + +gnome-core (1.4.0.2-3) unstable; urgency=low + + * Fix wrong dif.gz file (Closes: #94499) + * Build against the latest lignome-dev (Closes: #95301, #95691) + * gnome-terminal should depends on gnome-bin (Closes: #95498) + * Doesn't build against gtkhtml this break fonts displaying (Closes: #92187) + + -- Christian Marillat Tue, 1 May 2001 11:03:14 +0200 + +gnome-core (1.4.0.2-2) unstable; urgency=low + + * New/old patch against manpages, never applied by upstream. + * gnome-help depends on lynx. + * Use x-terminal-emulator in gnome-download instead of xterm. + * Move gnome-convert and gnome-download from gnome-core to gnome-help. + * Move gnome-login-check from gnome-core to gnome-session. + * Move gnome-panel-add-launcher from gnome-core to gnome-panel. + * Move sesion-properties* from gnome-core to gnome-session. + * debian/control Add Replaces for the changes above. + * Write manpages (Closes: #87085) + + -- Christian Marillat Tue, 17 Apr 2001 18:54:15 +0200 + +gnome-core (1.4.0.2-1) unstable; urgency=low + + * New upstream release. + * Build-depends on latest gettext (Closes: #93198) + * Icon box in menu editor is back (Closes: #91938) + * Build-depends on latest xml-i18n-tools and libgnome-dev + + -- Christian Marillat Wed, 11 Apr 2001 15:16:20 +0200 + +gnome-core (1.4.0.1-2) unstable; urgency=low + + * Build depends on versionned gettext 0.10.35-17 (Closes: #93198) + * Write manpage for gnome-session and add docbook-to-man in build-depnds + * Write manpages for gnome-help (Closes: #87089) + + -- Christian Marillat Sat, 7 Apr 2001 15:52:40 +0200 + +gnome-core (1.4.0.1-1) unstable; urgency=low + + * New upstream release. + * debian/gnome-terminal.wrapper change -T by -t (Closes: #90847) + * debian/gnome-session.README.debian remove references to .xsession. This + is now obsolete by the new x-session-manager scheme. + + -- Christian Marillat Sun, 1 Apr 2001 15:01:51 +0200 + +gnome-core (1.4.0-2) unstable; urgency=low + + * Build depends on libglade-gnome0-dev (>= 0.16-1) (Closes: #90416) + * debian/control Add Build-Conflicts: libgtkhtml-dev (>= 0.7-1) (Closes: #90700) + + -- Christian Marillat Thu, 22 Mar 2001 16:44:12 +0100 + +gnome-core (1.4.0-1) unstable; urgency=low + + * New upstream release. + * Gnome-core replaces gnome-control-center 1.2.3-1 (Closes: #90124) + * Remove manpages patche included by upstream. + * gnome-session don't always saves session on logout (Closes: #89630) + * Can add a launcher in the panel (Closes: #90018) + * Deskguide don't crashes on Fill with mini-images (Closes: #86952) + * Deskguide don't fail to run (Closes: #89769) + * Pager applet don't fail to run (Closes: #89025) + + -- Christian Marillat Mon, 19 Mar 2001 13:01:26 +0100 + +gnome-core (1.3.1-2) unstable; urgency=low + + * Remove taslisk-applet manpage (Closes: #88994) + * New patch against gnome-terminal.1 (Closes: #89005) + * Move /usr/lib/libtasklist_applet.so in libpanel-applet0 + (Closes: #89053, #89008, #89012, #89091, #89003) + * Gnome-terminal replace gnome-help-data (<= 1.0.55-2) (Closes: #87910) + + -- Christian Marillat Sat, 10 Mar 2001 10:45:14 +0100 + +gnome-core (1.3.1-1) unstable; urgency=low + + * New upstream release. + * Removed default.session patch + * debian/control Add Replaces: gnome-control-center (<= 1.2.2-10), because + the session-properties-capplet is now in this package. + * debian/{postinst,prerm} Call scrollkeeper + * debian/control Add scrollkeeper, xml-i18n-tools and libglade-gnome0-dev in + build-depends and scrollkeeper in depends for gnome-core + * Menu and laucnh keys works now (Closes: #86955) + * Dead keys work in gnome-terminal (Closes: #63102) + * Gnome-terminal isn't broken (Closes: #86752) + * New patch htmlurl.h (This file was broken by upstream author) + * XFMail doesn't crash the tasklist applet in this release (Closes: #88515) + * debian/gnome-core.menu New file for the session properties capplet + + -- Christian Marillat Mon, 5 Mar 2001 11:40:15 +0100 + +gnome-core (1.2.4-11) unstable; urgency=low + + * Update (again) the Build-depends field (Closes: #87419) + * Add a debian directory for the gnome-help-browser and add suggest doc-base + for gnome-help. Now we can watch debian documentation registered with doc-base. + * Add a lintian override file for libpanel-applet0 + + -- Christian Marillat Sun, 25 Feb 2001 16:14:09 +0100 + +gnome-core (1.2.4-10) unstable; urgency=low + + * Update the Build-depends field (Closes: #86441, #87419) + * Call update-alternatives only in remove (gnome-terminal, gnome-session) (Closes: #87327, #87328) + + -- Christian Marillat Sat, 24 Feb 2001 18:03:20 +0100 + +gnome-core (1.2.4-9) unstable; urgency=low + + * Remove abandonned /etc/CORBA/servers/bad-applet.goad (Closes: #84950) + * Build against the latest gnome-libs (1.2.11) (Close: #85932) + + -- Christian Marillat Wed, 14 Feb 2001 13:49:26 +0100 + +gnome-core (1.2.4-8) unstable; urgency=low + + * debian/control Add Replaces: gnome-help-data (<< 1.0.55-2) for + gnome-help (Closes: #80974) + * debian/gnome-help.mime Rewrote (Closes: #82891) + * debian/control gnome-core depends on gnome-bin (Closes: #82951) + * Wrote gnome-panel.README.Debian (Closes: #82954) + + -- Christian Marillat Mon, 22 Jan 2001 16:04:58 +0100 + +gnome-core (1.2.4-7) unstable; urgency=low + + * Added gnome-bin (>= 1.2.0) in gnome-session Depends field (Closes: #80589, #80595, #80733) + + -- Christian Marillat Wed, 27 Dec 2000 19:24:08 +0100 + +gnome-core (1.2.4-6) unstable; urgency=low + + * Apply patch to gnome-run to call x-terminal-emulator (Closes: #80219) + * debian/gnome-terminal.wrapper This is -t not -T close (Closes: #80405) + + -- Christian Marillat Sun, 24 Dec 2000 03:27:12 +0100 + +gnome-core (1.2.4-5) unstable; urgency=low + + * Install gnome-terminal.wrapper as x-terminal-emulator and remove + debian/patches/gnome-terminal.dpatch (Closes: 64326) + Thanks to Eric Gillespie, Jr. + * Add Recommends: gnome-applets on gnome-panel (Closes: #72208) + * gnome-sesion provides x-session-manager and install alternative (Closes: #60667) + * Added hints=Gnome for all menu files. + + -- Christian Marillat Wed, 20 Dec 2000 23:19:55 +0100 + +gnome-core (1.2.4-4) unstable; urgency=low + + * Call x-terminal-emulator in gnome-wm and add depends on the latest debianutils + for gnome-session. Thanks to Joseph Carter for the file + (Closes: #79776) + * Rewrote default.session patch + * Add patch form Doug Larrick for gwmthumbnail.c (Closes: #78550) + + -- Christian Marillat Sun, 17 Dec 2000 12:04:54 +0100 + +gnome-core (1.2.4-3) unstable; urgency=low + + * Change gnome-help.mime to call the right file (Closes: #77986) + Thanks Malcolm Parsons for the patch. + * Patch gsm/default.in (two entries with same id) (Closes: #78276) + Thanks to Normal User (Nice name) + * Move gnome-control-center from Depends to Suggests. + * Remove libgtkhtml-dev from Build-Depends (Closes: #79527) + + -- Christian Marillat Wed, 13 Dec 2000 18:01:34 +0100 + +gnome-core (1.2.4-2) unstable; urgency=low + + * Remove README and NEWS files (Closes: #77250) + * Disable thumbnails by default in deskguide_applet (Closes: #77205) + * debian/rules --with-window-manager is now sawfish (was x-window-manager) + and rewrote debian/patches/gnome-wm.dpatch to remove x-window-manager (Closes: #77401) + * Should close this old bug (Closes: #51198) + * Patch gnome-edit to use x-terminal-emulator instead of xterm. + + -- Christian Marillat Mon, 20 Nov 2000 11:35:55 +0100 + +gnome-core (1.2.4-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Thu, 16 Nov 2000 00:43:15 +0100 + +gnome-core (1.2.3.1-1) unstable; urgency=low + + * New upstream release. + * Add gnome-help example and manpage in gnome-help package (Closes: #49977) + * This release should close these old bugs (Closes: #60561, #60768, #45053) + * Gnome-panel don't use all CPU time (Closes: #75251, #60209) + * Remove gmenu patch included by upstream. + + -- Christian Marillat Wed, 8 Nov 2000 17:09:42 +0100 + +gnome-core (1.2.3-1) unstable; urgency=low + + * New upstream release. + * Debian menus aren't empty (Closes: #70470) + * Launcher can find icon (Closes: #62502) + + -- Christian Marillat Tue, 24 Oct 2000 15:51:11 +0200 + +gnome-core (1.2.2.1-3) unstable; urgency=low + + * Add gnome-terminal.prerm for update-alternatives --remove (Closes: #74451) + * Patch gnome-terminal to accept -T option (Closes: #74450) + * Move README.debian in gnome-session package (Closes: #60440) + * mesg work in gnome-terminal (Closes: #71728) + * Upstream fix these old bugs in Gnome-terminal + Problem with menubar (Closes: #57516) + Problem with console-apt Closes: #60079) + Problem with screen (Closes: #50156) + * Binaries don't should go in /usr/X11R6/bin (Closes: #24031) + Quoting Debian policy : + "Packages using the X Window System should abide by the FHS standard" + "whenever possible; they should install binaries, libraries, manual" + "pages, and other files in FHS-mandated locations wherever possible." + "This means that files must not be installed into /usr/X11R6/bin/'" + * hostname isn't harcoded (Closes: #72536) + * Error messages mention Lynx (Closes: #62216) + * Display correctly deskuse.html (Closes: #49974) + * Add patch from malcolm (Closes: #64820) + + -- Christian Marillat Sat, 14 Oct 2000 23:39:49 +0200 + +gnome-core (1.2.2.1-2) unstable; urgency=low + + * Typo in debian/gnome-terminal.postinst + * Add gnome-terminal manpage (Closes: #69188) + * Closes: #63103 already closed in 1.2.1-0.2 (typo in debian/changelog) + * Gnome-terminal write to /var/run/utmp (Closes: #59053) + * delete/backspace keys works (Closes: #57198) + * Install GnomeHelp file in /etc/gnome/config (Closes: #73012) + * Convert png icons in xpm for Debian menu. + * Rearange documentation for dhelp (Closes: #56672) + + -- Christian Marillat Thu, 5 Oct 2000 00:59:44 +0200 + +gnome-core (1.2.2.1-1) unstable; urgency=low + + * New upstream release. + * Patch all manpages (Closes: #70009) + * gnome-panel 1.0.55-2.0.1 (sparc) is now installable (Closes: #69075, #71570) + * gmenu don't jam up all translations (Closes: #46446) + * panel remember its configuration between session + (Closes: #47734, #54190) + * Icons are now centered (Closes: #63868) + * Bugs closed by previous NMU in gnome-panel (Closes: #40036, #52584, #54755, + #58278, #61083, #69428)) + * libgen_util_applet.so installed in 1.2.1-0.2 (Closes: #69463) + * debian/control remove Conflicts: asclock (Closes: #52077) + * gnome-help 1.0.55-2.0.1 (sparc) is now installable (Closes: #69356) + * Bugs closed by previous NMU in gnome-help (Closes: #49734, #56081, #58679, #58973) + * debian/control move gmc from Recommends to Suggests (Closes: #59415) + * The first search in gnome-wm search is x-window-manager + (Closes: #50940, #65969, #62143) + * Bug closed in 1.2.2-1 (README.debian in gnome-session package) (Closes: #66219) + * Bugs closed by previous NMU in gnome-terminal + (Closes: #64579, #63592, #63332, #56584, #55477, #54428) + * gnome-terminal provide x-terminal-emulator (Closes: #61805, #53994, #56225) + + -- Christian Marillat Wed, 27 Sep 2000 16:02:16 +0200 + +gnome-core (1.2.2-1) unstable; urgency=low + + * New maintainer, thanks James. + * New upstream release. + * Switch to debhelper V2 + * Move README.debian in gnome-session package (Closes: #65235) and + update this file (Closes: #71339) + * Bug closed in 1.2.1-0.2 (Install missing libraries) (Closes: #69590, #70483) + * Bugs closed in 1.2.1-0.1 (typo close instead closes) (Closes: #53764, #54050) + * Remove gtkhtml patch. + * The desk guide show thumbnail (Closes: #72359) + * Missing package under sparc (Closes: #71438) + * debian/control add Conflicts: libgnome32 (<< 1.2.0-1) for gnome-panel (Closes: #72039) + * Added icons in Debian menu. + * Eject in drivemount check if '-u' is available (Closes: #63954) + * Patch gmenu to find Debian menu. + + -- Christian Marillat Tue, 26 Sep 2000 17:34:23 +0200 + +gnome-core (1.2.1-0.2) unstable; urgency=low + + * NMU. + * Install these libraries libfish_applet.so libgen_util_applet.so + libpanel_status.so (Closes: #69428, #69590) + * Copy latest gnome aclocal in macros/ and run macros/autogen.sh + This is needed to build gnome-help-browser against libgtkhtml4. + * In debian/control + gnome-session depends on gnome-panel (>= ${Source-Version}). + gnome-help depends on gnome-core (>= 1.2.0-0.1) no Source-Version. + gnome-terminal don't depends on gnome-core. + * URL's are clickable in gnome-terminal (Closes: 63103). + * debian/gnome-panel.undocumented removed printer_applet.1 + * Cut and paste work in gnome-terminal (Closes: #63592). + + -- Christian Marillat Wed, 23 Aug 2000 21:23:36 +0200 + +gnome-core (1.2.1-0.1) unstable; urgency=low + + * New upstream release (Closes: #58806, #66467) + * NMU. + * Standards-Version to 3.1.1.1 Added Build-depends field. + * Removed patches: dialer, drivemount-floppy, modemlights, term, + help-browser, debian-menu, url-match. + * Added patches: gtkhtml. + * Build against libgtkhtml3. Closes: #58679, #36806, #49734 + * Default manpath and infopath are wrong. Closes: #56081 + * gmenu segfaults. Close: #53764, #54050 + * gnome-panel: panel no longer works. Closes: #58278 + * gnome-panel: gnomepager-applet should put braces around. Closes: #52584 + * Backspace and delete work correctly. Closes: #54428 + * TERM never select xterm-debian. Closes: #56584, #55477, #64579 + * Disable arrows option is now saved. Closes: #54755 + * No more files in /usr/share. Closes: #61083 + * Show debian menus. Closes: #66214 + * New help documentation for panel. Closes: #40036 + * Gnome-terminal write to /var/run/utmp. Closes: #59053 + * gnome-terminal provide x-terminal-emulator. Closes: #61805, #56225 + * README.Debian is here. Closes: #65235 + + -- Christian Marillat Tue, 25 Jul 2000 19:09:21 +0200 + +gnome-core (1.0.55-2) frozen unstable; urgency=low + + * Make x-window-manager run first by gnome-wm script to conform to + debian policy (Closes: #61617) (This is an important bug) + + -- James LewisMoss Sun, 21 May 2000 19:31:19 -0400 + +gnome-core (1.0.55-1) unstable; urgency=low + + * New upstream. + + -- James LewisMoss Sun, 2 Jan 2000 07:32:36 -0500 + +gnome-core (1.0.54-2) unstable; urgency=low + + * Fix the gnome-pager forgets size settings bug (was saved to wrong + section). Closes: #49839, #46845. + + -- James LewisMoss Fri, 12 Nov 1999 07:54:46 -0500 + +gnome-core (1.0.54-1) unstable; urgency=low + + * New upstream. + + -- James LewisMoss Thu, 4 Nov 1999 23:20:14 -0500 + +gnome-core (1.0.53-4) unstable; urgency=low + + * New maintainer. + + -- James LewisMoss Mon, 25 Oct 1999 23:17:31 -0400 + +gnome-core (1.0.53-3) unstable; urgency=low + + * Ok, I made a mistake by setgiding gnome-terminal to + utmp. Reverted the change. Closes: #47960 + + -- Raphael Hertzog Mon, 18 Oct 1999 19:17:27 +0200 + +gnome-core (1.0.53-2) unstable; urgency=low + + * gnome-session does launch a default window-manager. It does launch + gnome-wm if no other information has been found. gnome-wm now + reads the list of window managers from /etc/X11/window-managers + once it has tried gnome compliant wm. Closes: #38347, #47370 + * Patched gnome-terminal. TERM=xterm-debian again ... actually this + closes: #47552, #44960, #41065 + * gnome-terminal is now setgid utmp and can thus register itself + in the UTMP database. Closes: #40507 + * The URL match does now accept % characters. Closes: #47281 + * libpanel-applet0.postinst check for the changelog.gz mysteriously + staying around. Closes: #45871 + * Unreproducable bugs without answer from the submitter. + Closes: #41195, #42865 + + -- Raphael Hertzog Sat, 16 Oct 1999 19:52:38 +0200 + +gnome-core (1.0.53-1) unstable; urgency=low + + * New upstream version. + * gnome-session does now depend on gnome-panel and recommends + gmc (both are needed for a full Gnome desktop). + * gnome-terminal does not have a border. Closes: #38972 + + -- Raphael Hertzog Tue, 12 Oct 1999 21:17:58 +0200 + +gnome-core (1.0.52-1) unstable; urgency=low + + * New maintainer. Steve said that he wanted to give away some of + his packages. I've asked to take gnome-core, he never replied, so + I'm taking it but I will give it back to him if he wanted to + keep it. In the meantime I can better manage bugs with my name + in the Maintainer field. + * New upstream version. + + -- Raphael Hertzog Mon, 4 Oct 1999 21:28:18 +0200 + +gnome-core (1.0.50-0.1) unstable; urgency=low + + * New upstream version. + * NMU again. + + -- Raphael Hertzog Thu, 30 Sep 1999 22:10:03 +0200 + +gnome-core (1.0.41-0.1) unstable; urgency=low + + * New upstream version. + * NMU again. + + -- Raphael Hertzog Mon, 27 Sep 1999 13:10:31 +0200 + +gnome-core (1.0.9-0.1) unstable; urgency=low + + * New upstream version. Closes: #43253, #44098 + * Apply patches before configuring (and relaunch automake && autoconf + because one of the patches is applied on Makefile.am). + * NMU. Thanks to Christian Marillat for his work. + * Imlib bug corrected: closes: #39085 + * X11 binaries don't have to go /usr/X11R6/bin. Closes: #24031 + * The panel does start correctly wihout complaining about a + missing name service. Closes: #39380, #39634, #40478 + * The panel doesn't consume all CPU resources. Closes: #30654 + * The panel launches apps from where it has been launched itself. + Closes: #32319 + * The panel keeps the settings. Closes: #37052, #40579, #43496 + * Old core dump corrected upstream. Closes: #39400, #40328, #42167 + Closes: #44344, #44724, #44732, #44759, #44773 + * Bug in menu-method, not in gnome-panel. Already reported against + menu. Closes: #40089 + * cdplayer_applet works again. Closes: #42192 + * gnome pager works well: Closes: #42499, #42610 + * modem_lights draws itself correctly. Closes: #43861, #45055 + * The dialer applets doesn't exit when stopping while + not yet connected. Closes: #45287 + * No more Debian menu in the panel. Closes: #41040 + * GnomeICU works with this panel. Closes: #39626, #39515 + * gnome-panel-data conflicts with asclock. + Closes: #40712, #40715, #40808, #41430 + A better solution will be needed. Maybe put asclock in his own + package or create a asclock-data package that will be shared. + * Updated the modemlights patch. Closes: #43512 + * Added a patch for gnome-wm. Closes: #38366 + * Move lib{gkb,fish}_applet.so files to libgnome-applet0 (those are + not libraries to be linked with, just simple modules). Closes: #38596 + * Asclock works well without xearth (the code still mentions xearth + however). Closes: #40530 + * New patch (help-browser) for changing the default MANPATH and INFOPATH in + gnome-help-browser.c Closes: #41452 + * Moved help-browser to the new "Help" menu section. + * Added gnome-help.mime. Closes: #42205 + * Gnome-session does launch gnome-panel ! (I suppose that it failed + to launch since panel was broken). Closes: #42937 + * gnome-sesion doesn't core dump. Closes: #36640 + * The terminal does remember the TERM var. Closes: #43067 + * The terminal keeps its size when dragging the manu bar in and out. + Closes: #44762 + * The menu section of gnome-terminal corrected. Closes: #37635 + + -- Raphael Hertzog Wed, 22 Sep 1999 13:24:34 +0200 + +gnome-core (1.0.7-1) unstable; urgency=low + + * New upstream version. + * Removed "term" patch + + -- Steve Haslam Mon, 28 Jun 1999 01:36:31 +0100 + +gnome-core (1.0.6-2) unstable; urgency=low + + * debian-menu.dpatch: created to fix guessing Debian menus + (/etc/menu-methods/gnome-panel now) and to make Debian menus the default + instead of GNOME system menus. + * gnome-help now suggests gnome-users-guide-en (closes: #35724) + * /etc/menu-methods/gnome-panel now creates .directory files and searches + /usr/X11R6/include/X11/pixmaps for menu icons + + -- Steve Haslam Sun, 13 Jun 1999 15:28:52 +0100 + +gnome-core (1.0.6-1) unstable; urgency=low + + * New upstream version. + + -- Steve Haslam Sat, 5 Jun 1999 12:57:08 +0100 + +gnome-core (1.0.5-3) unstable; urgency=low + + * debian/gnome-terminal.menu: managed to lose change mentioned in last + revision. Replaced. + * debian/gnome-core.undocumented: removed gnome-wm.1 (it was in + gnome-session.undocumented too). + + -- Steve Haslam Mon, 31 May 1999 19:15:54 +0100 + +gnome-core (1.0.5-2) unstable; urgency=low + + * debian/gnome-terminal.menu: changed section to XShells (Bug#37635) + * debian/rules: added gnome-wm and gnome-edit to dh_undocumented call + (Bug#37632) + * debian/gnome.menu-method: added patch to honour needs=text (Bug#36928) + from Decklin Foster + * Call dh_strip when making libpanel-applet-dev (Closes: Bug#31244) + * Removed /usr/share/gnome/apps/Debian symlink, (closes: #38100) + * Sanified build system a la gnome-libs + * debian/control: made gnome-help, gnome-help-data and gnome-panel-data + packages. + + -- Steve Haslam Sun, 23 May 1999 14:35:44 +0100 + +gnome-core (1.0.5-1) unstable; urgency=low + + * New maintainer. + + -- Steve Haslam Tue, 11 May 1999 01:01:12 +0100 + +gnome-core (1.0.5-0.2) unstable; urgency=low + + * gnome-panel.files.in: added asclock themes, libgkb_applet.a + * gnome-core.files.in: added gnome-wm, gnome-edit + * term.dpatch: gnome-terminal TERM to xterm-debian rather than xterm + * gsm/Makefile.am: put default.session, default.wm in /etc/gnome + * debian/gnome-session.conffiles.in: added above two files + * debian/gnome-session.files.in: updated this too + + -- Steve Haslam Sun, 18 Apr 1999 16:47:23 +0100 + +gnome-core (1.0.5-0.1) unstable; urgency=low + + * Non-maintainer upload + * New upstream version + + -- Steve Haslam Thu, 15 Apr 1999 23:22:23 +0100 + +gnome-core (1.0.1-0.3) unstable; urgency=low + + * Weehay! More broken dependencies. This one libghttp -1.1, + a bogus package that only ever existed on my machine. + + -- Jules Bean Mon, 8 Mar 1999 08:24:00 +0000 + +gnome-core (1.0.1-0.2) unstable; urgency=low + + * Another NMU, this time to fix bogus dependencies on libgtop0 + and libglib1.1 + + -- Jules Bean Sun, 7 Mar 1999 14:21:12 +0000 + +gnome-core (1.0.1-0.1) unstable; urgency=low + + * NMU for GNOME-1.0 + * Hacked to patch SIGPIPE bug + * Don't delete GIFs in rules + + -- Jules Bean Fri, 5 Mar 1999 18:36:29 +0100 + +gnome-core (0.99.99pre1.0.0-1) unstable; urgency=low + + * New upstream release. + + -- Jim Pick Fri, 26 Feb 1999 23:18:10 -0800 + +gnome-core (0.99.3.2-4) unstable; urgency=low + + * Recompiled yet again - dual dependency on libglib. + Fixes: BUG#32510 + + -- Jim Pick Thu, 28 Jan 1999 00:00:22 -0800 + +gnome-core (0.99.3.2-3) unstable; urgency=low + + * Recompiled again to due to dependencies. + + -- Jim Pick Sun, 24 Jan 1999 01:10:07 -0800 + +gnome-core (0.99.3.2-2) unstable; urgency=low + + * Recompiled with libgnome 0.99.4. + + -- Jim Pick Fri, 22 Jan 1999 16:44:45 -0800 + +gnome-core (0.99.3.2-1) unstable; urgency=low + + * New upstream release. + + -- Jim Pick Wed, 20 Jan 1999 11:42:46 -0800 + +gnome-core (0.30-2) frozen unstable; urgency=low + + * Recompiled with new libs. + * Fixed reference to /usr/X11R6 in README.Debian. + * Added warnings (Gnome is ALPHA). + * Patched dialer_applet to use pon/poff. + * Patched drivemount_applet to default to /floppy. + + -- Jim Pick Tue, 24 Nov 1998 10:56:08 -0800 + +gnome-core (0.30-1) unstable; urgency=low + + * New upstream release. + + -- Jim Pick Thu, 24 Sep 1998 21:28:02 -0700 + +gnome-core (0.28.1-1) unstable; urgency=low + + * New upstream release. + * Hopefully fixes panel applet bug. + + -- Jim Pick Wed, 19 Aug 1998 20:12:25 -0700 + +gnome-core (0.28-1) unstable; urgency=low + + * New upstream release. + + -- Jim Pick Mon, 17 Aug 1998 12:59:26 -0700 + +gnome-core (0.27-1) unstable; urgency=low + + * New upstream release. + * Added /usr/doc/gnome + + -- Jim Pick Sat, 15 Aug 1998 14:21:06 -0700 + +gnome-core (0.25-1) unstable; urgency=low + + * New upstream release. + + -- Jim Pick Thu, 6 Aug 1998 22:51:22 -0700 + +gnome-core (0.20-2) unstable; urgency=low + + * Added Debian menu-method for gnome-panel. Fixed Bug #24025 + (Thanks to Ray Dassen for reporting the bug, and Riku Voipio + who wrote the menu method for Gnome 0.12) + + -- Jim Pick Wed, 22 Jul 1998 20:22:00 -0700 + +gnome-core (0.20-1) unstable; urgency=low + + * New upstream release. + + -- Jim Pick Mon, 8 Jun 1998 12:00:08 -0700 + +gnome-core (0.13-1) unstable; urgency=low + + * Initial Release. + + -- Jim Pick Mon, 16 Mar 1998 15:27:43 -0800 --- gnome-panel-2.27.91.orig/debian/libpanel-applet2-doc.links +++ gnome-panel-2.27.91/debian/libpanel-applet2-doc.links @@ -0,0 +1 @@ +usr/share/doc/libpanel-applet2-doc/html/ usr/share/gtk-doc/html/panel-applet --- gnome-panel-2.27.91.orig/debian/libpanel-applet2-doc.install +++ gnome-panel-2.27.91/debian/libpanel-applet2-doc.install @@ -0,0 +1 @@ +doc/reference/panel-applet/html usr/share/doc/libpanel-applet2-doc/ --- gnome-panel-2.27.91.orig/debian/ubuntu-about.desktop.in +++ gnome-panel-2.27.91/debian/ubuntu-about.desktop.in @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +_Name=About Ubuntu +_Comment=Learn more about Ubuntu +Exec=yelp ghelp:about-ubuntu +Icon=distributor-logo +Terminal=false +Type=Application +Categories=GNOME;Application;Core; +StartupNotify=true --- gnome-panel-2.27.91.orig/debian/README.Debian +++ gnome-panel-2.27.91/debian/README.Debian @@ -0,0 +1,18 @@ +gnome-panel for Debian +---------------------- + + +--- vfolder user menu --- +(Thanks to Bill Allombert) + +If you want to get a customisable copy of the Debian menu, +you just need to to the following : + 1) apt-get install menu-xdg + 2) chmod +x /etc/menu-methods/gnome-vfolder-user + 3) put your custom menu file in ~/.menu/ + 4) run update-menus as user (and rerun it each time you + make modifications to your menu files) + + + -- Marc Dequènes (Duck) Fri, 11 Mar 2005 02:59:43 +0100 + --- gnome-panel-2.27.91.orig/debian/gnome-panel-data.postinst +++ gnome-panel-2.27.91/debian/gnome-panel-data.postinst @@ -0,0 +1,18 @@ +#!/bin/sh +set -e + +#DEBHELPER# + +update-gconf-defaults + +if [ "$1" = configure ] && dpkg --compare-versions "$2" lt-nl "2.20.1-2"; then + rm -f /etc/menu-methods/gnome-panel-data /etc/menu-methods/gnome-vfolder-user + rm -f /etc/gnome-vfs-2.0/vfolders/applications.template + if [ -d /etc/gnome-vfs-2.0/vfolders ]; then + rmdir --ignore-fail-on-non-empty /etc/gnome-vfs-2.0/vfolders + fi + rm -rf /var/lib/gnome/Debian + if [ -d /var/lib/gnome ]; then + rmdir --ignore-fail-on-non-empty /var/lib/gnome + fi +fi --- gnome-panel-2.27.91.orig/debian/gnome-panel.install +++ gnome-panel-2.27.91/debian/gnome-panel.install @@ -0,0 +1,8 @@ +debian/tmp/usr/bin +debian/tmp/usr/lib/gnome-panel/*.so +debian/tmp/usr/lib/gnome-panel/*-mechanism +debian/tmp/usr/share/man +debian/fusa-applet.note usr/share/gnome-panel +debian/migrate-fusa-config.py usr/share/gnome-panel +debian/add-indicator-applet.py usr/share/gnome-panel +debian/indicator-applet.desktop etc/xdg/autostart --- gnome-panel-2.27.91.orig/debian/gnome-panel-data.preinst +++ gnome-panel-2.27.91/debian/gnome-panel-data.preinst @@ -0,0 +1,31 @@ +#!/bin/sh +set -e + +rm_conffile() { + PKGNAME="$1" + CONFFILE="$2" + + if [ -e "$CONFFILE" ]; then + md5sum="`md5sum \"$CONFFILE\" | sed -e \"s/ .*//\"`" + old_md5sum="`dpkg-query -W -f='${Conffiles}' $PKGNAME | sed -n -e \"\\\\' $CONFFILE '{s/ obsolete$//;s/.* //p}\"`" + if [ "$md5sum" != "$old_md5sum" ]; then + echo "Obsolete conffile $CONFFILE has been modified by you." + echo "Saving as $CONFFILE.dpkg-bak ..." + mv -f "$CONFFILE" "$CONFFILE".dpkg-bak + else + echo "Removing obsolete conffile $CONFFILE ..." + rm -f "$CONFFILE" + fi + fi +} + +case "$1" in + install|upgrade) + if dpkg --compare-versions "$2" le "1:2.23.92"; then + rm_conffile gnome-panel-data "/etc/gnome-vfs-2.0/vfolders/applications.template" + rm_conffile gnome-panel-data "/etc/menu-methods/gnome-panel-data" + rm_conffile gnome-panel-data "/etc/menu-methods/gnome-vfolder-user" + fi +esac + +#DEBHELPER# --- gnome-panel-2.27.91.orig/debian/control.in +++ gnome-panel-2.27.91/debian/control.in @@ -0,0 +1,130 @@ +Source: gnome-panel +Section: gnome +Priority: optional +Maintainer: Ubuntu Desktop Team +XSBC-Original-Maintainer: Guilherme de S. Pastore +Uploaders: @GNOME_TEAM@ +Standards-Version: 3.8.1 +Vcs-Bzr: http://code.launchpad.net/~ubuntu-desktop/gnome-panel/ubuntu +Build-Depends: cdbs (>= 0.4.41), + debhelper (>= 5), + quilt, + intltool (>= 0.40.0), + gnome-pkg-tools (>= 0.14), + dpkg-dev (>= 1.13.19), + gnome-doc-utils, + libx11-dev, + libxau-dev, + libgtk2.0-dev (>= 2.15.1), + libgnomeui-dev (>= 2.16.0-2), + libgnome-desktop-dev (>= 2.26), + libgnome2-dev (>= 2.13.0), + libbonoboui2-dev (>= 2.1.1), + liborbit2-dev (>= 1:2.12.1), + libwnck-dev (>= 2.19.5), + libgconf2-dev (>= 2.6.1), + libecal1.2-dev (>= 1.6.0) [!hurd-i386], + libedataserverui1.2-dev (>= 1.11.2) [!hurd-i386], + libcairo2-dev (>= 1.0.0), + gtk-doc-tools (>= 1.0), + libgnome-menu-dev (>= 2.16.1), + libpango1.0-dev (>= 1.15.4), + libedataserver1.2-dev (>= 1.2.0), + libglib2.0-dev (>= 2.18.0), + evolution-data-server-dev [!hurd-i386], + libgweather-dev (>= 2.27.90), + librsvg2-dev, + libdbus-glib-1-dev (>= 0.71), + libdbus-1-dev (>= 1.1.2), + network-manager-dev (>= 0.6), + libnm-util-dev (>= 0.6), + libpolkit-gobject-1-dev (>= 0.91), + sharutils +Build-Depends-Indep: libglib2.0-dev, libgtk2.0-dev + +Package: gnome-panel +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + gnome-panel-data (>= ${gnome:Version}), + gnome-panel-data (<< ${gnome:NextVersion}), + gnome-desktop-data (>= 2.10.0-1), + gnome-control-center (>= 1:2.8.2-3), + gnome-menus (>= 2.16.1), + gnome-about (>= 2.10.0-1) +Recommends: gnome-applets (>= 2.12.1-1), + gnome-session, + evolution-data-server, + gnome-icon-theme (>= 2.24), + alacarte, + gvfs, + indicator-applet +Suggests: yelp, + gnome2-user-guide, + gnome-terminal | x-terminal-emulator, + gnome-system-tools, + nautilus, + evolution, + epiphany-browser, + gnome-session (>= 2.23.6) | gdm, + menu-xdg (>= 0.2) +Description: launcher and docking facility for GNOME + The GNOME Panel is an essential part of the GNOME Desktop, providing + toolbar-like “panels” which can be attached to the sides of your desktop. + They are used to launch applications and embed a number of other + functions, such as quick launch icons, the clock, the notification area, + volume controls and the battery charge indicator, and utilities ranging + from weather forecast to system monitoring. + +Package: libpanel-applet2-0 +Section: libs +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends} +Description: library for GNOME Panel applets + This library is used by GNOME Panel applets. + +Package: gnome-panel-dbg +Section: debug +Priority: extra +Architecture: any +Depends: ${misc:Depends}, + gnome-panel (= ${binary:Version}), + libpanel-applet2-0 (= ${binary:Version}) +Description: GNOME Panel and library for panel applets - debugging symbols + This package contains debugging symbols for gnome-panel and the + libpanel-applet library. It is provided to help debugging problem in + the panel itself or in the library. The debugging symbols are installed + in /usr/lib/debug and will automatically be used by gdb. + +Package: libpanel-applet2-dev +Section: libdevel +Architecture: any +Depends: ${misc:Depends}, + libpanel-applet2-0 (= ${binary:Version}), + libgconf2-dev (>= 2.6.1), + libgtk2.0-dev (>= 2.13.1), + libgnomeui-dev (>= 2.5.4), + libbonoboui2-dev (>= 2.1.1) +Description: library for GNOME Panel applets - development files + This packages provides the include files and static library for the GNOME + Panel applet library functions. + +Package: libpanel-applet2-doc +Section: doc +Architecture: all +Depends: ${misc:Depends} +Suggests: doc-base +Description: library for GNOME Panel applets - documentation files + This packages provides the documentation files for the GNOME Panel applet + library functions. + +Package: gnome-panel-data +Section: gnome +Architecture: all +Depends: ${misc:Depends}, + gconf2 (>= 2.14.0-2) +Recommends: gnome-panel +Description: common files for the GNOME Panel + This package includes some files that are needed by the GNOME Panel + (Pixmaps, .desktop files and internationalization files). --- gnome-panel-2.27.91.orig/debian/gnome-panel-data.postrm +++ gnome-panel-2.27.91/debian/gnome-panel-data.postrm @@ -0,0 +1,8 @@ +#!/bin/sh +set -e + +if [ "$1" = remove ] && [ -x /usr/sbin/update-gconf-defaults ]; then + update-gconf-defaults +fi + +#DEBHELPER# --- gnome-panel-2.27.91.orig/debian/compat +++ gnome-panel-2.27.91/debian/compat @@ -0,0 +1 @@ +5 --- gnome-panel-2.27.91.orig/debian/gnome-desktop-item-edit.sgml +++ gnome-panel-2.27.91/debian/gnome-desktop-item-edit.sgml @@ -0,0 +1,107 @@ +Christian"> + Marillat"> + december 7, 2003"> + 1"> + marillat@debian.org"> + + gnome-desktop-item-edit"> + + Debian GNU/Linux"> + GNU"> +]> + + + +
+ &dhemail; +
+ + &dhfirstname; + &dhsurname; + + + 2001 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + &dhpackage; + + tool to edit .desktop file + + + + &dhpackage; + + + + + + + + DESCRIPTION + + &dhpackage; allows you to edit .desktop file. + + + + + OPTIONS + + + + + + + Create new file in the given directory. + + + + + + + Display help + + + + + + + SEE ALSO + + gnome-options(7) + + + + AUTHOR + + This manual page was written by &dhusername; &dhemail; for + the &debian; system (but may be used by others). + + +
+ + --- gnome-panel-2.27.91.orig/debian/gnome-panel.postinst +++ gnome-panel-2.27.91/debian/gnome-panel.postinst @@ -0,0 +1,25 @@ +#!/bin/sh + +# show note for people upgrading about the new fusa applet +if [ "$1" = configure ] && dpkg --compare-versions "$2" le-nl "1:2.24.0-0ubuntu2" \ + && [ -e /usr/share/gnome-panel/fusa-applet.note ]; +then + cp /usr/share/gnome-panel/fusa-applet.note /var/lib/update-notifier/user.d +fi + +# gconf default for the directory fixup +if [ "$1" = configure ] && dpkg --compare-versions "$2" le-nl "1:2.24.1-0ubuntu2.1"; +then + echo "/apps/panel/need_directory_fixup true" > /usr/share/gconf/defaults/20_gnome_panel_directory_fixup + update-gconf-defaults +fi + +# gconf default for the indicator applet +if [ "$1" = configure ] && dpkg --compare-versions "$2" le-nl "1:2.26.0-0ubuntu2"; +then + echo "/apps/panel/need_add_indicator_applet true" > /usr/share/gconf/defaults/25_gnome_panel_indicator_applet + update-gconf-defaults +fi + + +#DEBHELPER# --- gnome-panel-2.27.91.orig/debian/gnome-panel.postrm +++ gnome-panel-2.27.91/debian/gnome-panel.postrm @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +if [ "$1" = "remove" ]; then + rm -f /usr/share/gconf/defaults/20_gnome_panel_directory_fixup + rm -f /usr/share/gconf/defaults/25_gnome_panel_indicator_applet +fi + +#DEBHELPER# + --- gnome-panel-2.27.91.orig/debian/patches/01_layout.patch +++ gnome-panel-2.27.91/debian/patches/01_layout.patch @@ -0,0 +1,39 @@ +Index: gnome-panel-2.27.91/gnome-panel/panel-menu-items.c +=================================================================== +--- gnome-panel-2.27.91.orig/gnome-panel/panel-menu-items.c 2009-08-20 05:59:57.000000000 +1000 ++++ gnome-panel-2.27.91/gnome-panel/panel-menu-items.c 2009-08-26 12:08:39.000000000 +1000 +@@ -991,6 +991,7 @@ + GtkWidget *item; + char *gconf_name; + char *name; ++ char *path; + char *uri; + GFile *file; + +@@ -1157,9 +1158,25 @@ + if (add_separator) + add_menu_separator (menu); + +- panel_menu_items_append_from_desktop (menu, "yelp.desktop", NULL, FALSE); ++ panel_menu_items_append_from_desktop (menu, "yelp.desktop", _("Help and Support"), FALSE); ++ ++ if (g_file_test (DATADIR"/applications/apport-gtk.desktop", ++ G_FILE_TEST_IS_REGULAR)) { ++ panel_menu_items_append_from_desktop (menu, "apport-gtk.desktop", NULL, FALSE); ++ ++ add_menu_separator (menu); ++ } ++ + panel_menu_items_append_from_desktop (menu, "gnome-about.desktop", NULL, FALSE); + ++ if (g_file_test (DATADIR"/omf/about-ubuntu/about-ubuntu-C.omf", ++ G_FILE_TEST_IS_REGULAR)) ++ panel_menu_items_append_from_desktop (menu, "ubuntu-about.desktop", NULL, FALSE); ++ ++ if (g_file_test (DATADIR"/omf/about-edubuntu/about-edubuntu-C.omf", ++ G_FILE_TEST_IS_REGULAR)) ++ panel_menu_items_append_from_desktop (menu, "edubuntu-about.desktop", NULL, FALSE); ++ + if (parent->priv->append_lock_logout) + panel_menu_items_append_lock_logout (menu); + } --- gnome-panel-2.27.91.orig/debian/patches/86_signal_curtain.patch +++ gnome-panel-2.27.91/debian/patches/86_signal_curtain.patch @@ -0,0 +1,18 @@ +diff --git a/gnome-panel/applet.c b/gnome-panel/applet.c +index c2932ee..c3bd534 100644 +--- a/gnome-panel/applet.c ++++ b/gnome-panel/applet.c +@@ -842,6 +842,13 @@ panel_applet_queue_initial_unhide_toplevels (gpointer user_data) + for (l = panel_toplevel_list_toplevels (); l != NULL; l = l->next) + panel_toplevel_queue_initial_unhide ((PanelToplevel *) l->data); + ++ g_spawn_command_line_async("dbus-send " ++ "--system --type=method_call " ++ "--dest=com.ubuntu.BootCurtain " ++ "/com/ubuntu/BootCurtain " ++ "com.ubuntu.BootCurtain.SignalLoaded string:gnome-panel", ++ NULL); ++ + return FALSE; + } + --- gnome-panel-2.27.91.orig/debian/patches/series +++ gnome-panel-2.27.91/debian/patches/series @@ -0,0 +1,17 @@ +01_layout.patch +04_default_panel_config.patch +08_clock_applet_event.patch +09_default_icons.patch +16_compiz_workspace_switcher.patch +17_about-ubuntu-translation.patch +18_lockdown_lock_editor.patch +20_fusa_migration_note_i18n.patch +25_inode_directory_fixup.patch +25_dynamic_fusa_detection.patch +#27_handle_overlapping_monitors.patch +#28_prefer_lvds_monitor.patch +30_disable-initial-animation.patch +70_relibtoolize.patch +85_disable_shutdown_on_ltsp.patch +86_signal_curtain.patch +99_ltmain_as-needed.patch --- gnome-panel-2.27.91.orig/debian/patches/08_clock_applet_event.patch +++ gnome-panel-2.27.91/debian/patches/08_clock_applet_event.patch @@ -0,0 +1,13 @@ +Index: gnome-panel-2.27.91/applets/clock/calendar-client.c +=================================================================== +--- gnome-panel-2.27.91.orig/applets/clock/calendar-client.c 2009-08-12 04:51:51.000000000 +1000 ++++ gnome-panel-2.27.91/applets/clock/calendar-client.c 2009-08-26 12:18:36.000000000 +1000 +@@ -2061,6 +2061,8 @@ + { + time_t day_tm = appointment->start_time + day_offset * 86400; + ++ if (duration == day_offset * 86400) ++ continue; + if (day_tm > month_end) + break; + if (day_tm >= month_begin) --- gnome-panel-2.27.91.orig/debian/patches/09_default_icons.patch +++ gnome-panel-2.27.91/debian/patches/09_default_icons.patch @@ -0,0 +1,26 @@ +Index: gnome-panel-2.27.91/gnome-panel/menu.c +=================================================================== +--- gnome-panel-2.27.91.orig/gnome-panel/menu.c 2009-08-01 05:30:13.000000000 +1000 ++++ gnome-panel-2.27.91/gnome-panel/menu.c 2009-08-26 12:18:40.000000000 +1000 +@@ -1473,7 +1473,7 @@ + NULL, NULL, + alias_directory ? gmenu_tree_directory_get_icon (alias_directory) : + gmenu_tree_entry_get_icon (entry), +- NULL); ++ PANEL_STOCK_DEFAULT_ICON); + + setup_menuitem (menuitem, + panel_menu_icon_get_size (), +Index: gnome-panel-2.27.91/gnome-panel/panel-stock-icons.h +=================================================================== +--- gnome-panel-2.27.91.orig/gnome-panel/panel-stock-icons.h 2009-08-20 05:59:57.000000000 +1000 ++++ gnome-panel-2.27.91/gnome-panel/panel-stock-icons.h 2009-08-26 12:18:40.000000000 +1000 +@@ -46,6 +46,8 @@ + #define PANEL_STOCK_EXECUTE "panel-execute" + #define PANEL_STOCK_CLEAR "panel-clear" + #define PANEL_STOCK_DONT_DELETE "panel-dont-delete" ++/* FIXME: put a more representative icon here */ ++#define PANEL_STOCK_DEFAULT_ICON "application-default-icon" + + void panel_init_stock_icons_and_items (void); + GtkIconSize panel_menu_icon_get_size (void); --- gnome-panel-2.27.91.orig/debian/patches/04_default_panel_config.patch +++ gnome-panel-2.27.91/debian/patches/04_default_panel_config.patch @@ -0,0 +1,395 @@ +Index: gnome-panel-2.27.4/gnome-panel/panel-default-setup.entries +=================================================================== +--- gnome-panel-2.27.4.orig/gnome-panel/panel-default-setup.entries 2009-06-30 00:49:36.000000000 +0200 ++++ gnome-panel-2.27.4/gnome-panel/panel-default-setup.entries 2009-07-22 16:30:19.000000000 +0200 +@@ -35,6 +35,12 @@ + + email_launcher + ++ ++ yelp_launcher ++ ++ ++ clock_separator ++ + + + +@@ -47,15 +53,15 @@ + + + +- window_menu +- +- + clock + + + notification_area + + ++ indicator_applet ++ ++ + show_desktop_button + + +@@ -64,6 +70,12 @@ + + workspace_switcher + ++ ++ trashapplet ++ ++ ++ fast_user_switch ++ + + + +@@ -261,7 +273,7 @@ + objects/browser_launcher/launcher_location + /schemas/apps/panel/objects/launcher_location + +- epiphany.desktop ++ firefox.desktop + + + +@@ -315,7 +327,7 @@ + objects/email_launcher/launcher_location + /schemas/apps/panel/objects/launcher_location + +- evolution.desktop ++ evolution-mail.desktop + + + +@@ -328,59 +340,59 @@ + objects/email_launcher/menu_path/schemas/apps/panel/objects/menu_path + objects/email_launcher/action_type/schemas/apps/panel/objects/action_type + +- ++ + + +- applets/window_menu/object_type ++ objects/yelp_launcher/object_type + /schemas/apps/panel/objects/object_type + +- bonobo-applet ++ launcher-object + + + +- applets/window_menu/toplevel_id ++ objects/yelp_launcher/toplevel_id + /schemas/apps/panel/objects/toplevel_id + + top_panel + + + +- applets/window_menu/position ++ objects/yelp_launcher/position + /schemas/apps/panel/objects/position + +- 0 ++ 4 + + + +- applets/window_menu/panel_right_stick ++ objects/yelp_launcher/panel_right_stick + /schemas/apps/panel/objects/panel_right_stick + +- true ++ false + + + +- applets/window_menu/locked ++ objects/yelp_launcher/locked + /schemas/apps/panel/objects/locked + + true + + + +- applets/window_menu/bonobo_iid +- /schemas/apps/panel/objects/bonobo_iid ++ objects/yelp_launcher/launcher_location ++ /schemas/apps/panel/objects/launcher_location + +- OAFIID:GNOME_WindowMenuApplet ++ file:///usr/share/applications/yelp.desktop + + + +- applets/window_menu/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id +- applets/window_menu/tooltip/schemas/apps/panel/objects/tooltip +- applets/window_menu/use_custom_icon/schemas/apps/panel/objects/use_custom_icon +- applets/window_menu/custom_icon/schemas/apps/panel/objects/custom_icon +- applets/window_menu/use_menu_path/schemas/apps/panel/objects/use_menu_path +- applets/window_menu/menu_path/schemas/apps/panel/objects/menu_path +- applets/window_menu/launcher_location/schemas/apps/panel/objects/launcher_location +- applets/window_menu/action_type/schemas/apps/panel/objects/action_type ++ objects/yelp_launcher/bonobo_iid/schemas/apps/panel/objects/bonobo_iid ++ objects/yelp_launcher/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id ++ objects/yelp_launcher/tooltip/schemas/apps/panel/objects/tooltip ++ objects/yelp_launcher/use_custom_icon/schemas/apps/panel/objects/use_custom_icon ++ objects/yelp_launcher/custom_icon/schemas/apps/panel/objects/custom_icon ++ objects/yelp_launcher/use_menu_path/schemas/apps/panel/objects/use_menu_path ++ objects/yelp_launcher/menu_path/schemas/apps/panel/objects/menu_path ++ objects/yelp_launcher/action_type/schemas/apps/panel/objects/action_type + + + +@@ -436,6 +448,54 @@ + applets/clock/launcher_location/schemas/apps/panel/objects/launcher_location + applets/clock/action_type/schemas/apps/panel/objects/action_type + ++ ++ ++ ++ objects/clock_separator/object_type ++ /schemas/apps/panel/objects/object_type ++ ++ separator ++ ++ ++ ++ objects/clock_separator/toplevel_id ++ /schemas/apps/panel/objects/toplevel_id ++ ++ top_panel ++ ++ ++ ++ objects/clock_separator/position ++ /schemas/apps/panel/objects/position ++ ++ 1 ++ ++ ++ ++ objects/clock_separator/panel_right_stick ++ /schemas/apps/panel/objects/panel_right_stick ++ ++ true ++ ++ ++ ++ objects/clock_separator/locked ++ /schemas/apps/panel/objects/locked ++ ++ true ++ ++ ++ ++ objects/clock_separator/bonobo_iid/schemas/apps/panel/objects/bonobo_iid ++ objects/clock_separator/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id ++ objects/clock_separator/tooltip/schemas/apps/panel/objects/tooltip ++ objects/clock_separator/use_custom_icon/schemas/apps/panel/objects/use_custom_icon ++ objects/clock_separator/custom_icon/schemas/apps/panel/objects/custom_icon ++ objects/clock_separator/use_menu_path/schemas/apps/panel/objects/use_menu_path ++ objects/clock_separator/menu_path/schemas/apps/panel/objects/menu_path ++ objects/clock_separator/launcher_location/schemas/apps/panel/objects/launcher_location ++ objects/clock_separator/action_type/schemas/apps/panel/objects/action_type ++ + + + +@@ -456,7 +516,7 @@ + applets/notification_area/position + /schemas/apps/panel/objects/position + +- 3 ++ 5 + + + +@@ -490,6 +550,114 @@ + applets/notification_area/launcher_location/schemas/apps/panel/objects/launcher_location + applets/notification_area/action_type/schemas/apps/panel/objects/action_type + ++ ++ ++ ++ applets/indicator_applet/object_type ++ /schemas/apps/panel/objects/object_type ++ ++ bonobo-applet ++ ++ ++ ++ applets/indicator_applet/toplevel_id ++ /schemas/apps/panel/objects/toplevel_id ++ ++ top_panel ++ ++ ++ ++ applets/indicator_applet/position ++ /schemas/apps/panel/objects/position ++ ++ 4 ++ ++ ++ ++ applets/indicator_applet/panel_right_stick ++ /schemas/apps/panel/objects/panel_right_stick ++ ++ true ++ ++ ++ ++ applets/indicator_applet/locked ++ /schemas/apps/panel/objects/locked ++ ++ true ++ ++ ++ ++ applets/indicator_applet/bonobo_iid ++ /schemas/apps/panel/objects/bonobo_iid ++ ++ OAFIID:GNOME_IndicatorApplet ++ ++ ++ ++ applets/indicator_applet/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id ++ applets/indicator_applet/tooltip/schemas/apps/panel/objects/tooltip ++ applets/indicator_applet/use_custom_icon/schemas/apps/panel/objects/use_custom_icon ++ applets/indicator_applet/custom_icon/schemas/apps/panel/objects/custom_icon ++ applets/indicator_applet/use_menu_path/schemas/apps/panel/objects/use_menu_path ++ applets/indicator_applet/menu_path/schemas/apps/panel/objects/menu_path ++ applets/indicator_applet/launcher_location/schemas/apps/panel/objects/launcher_location ++ applets/indicator_applet/action_type/schemas/apps/panel/objects/action_type ++ ++ ++ ++ ++ applets/fast_user_switch/object_type ++ /schemas/apps/panel/objects/object_type ++ ++ bonobo-applet ++ ++ ++ ++ applets/fast_user_switch/toplevel_id ++ /schemas/apps/panel/objects/toplevel_id ++ ++ top_panel ++ ++ ++ ++ applets/fast_user_switch/position ++ /schemas/apps/panel/objects/position ++ ++ 0 ++ ++ ++ ++ applets/fast_user_switch/panel_right_stick ++ /schemas/apps/panel/objects/panel_right_stick ++ ++ true ++ ++ ++ ++ applets/fast_user_switch/locked ++ /schemas/apps/panel/objects/locked ++ ++ true ++ ++ ++ ++ applets/fast_user_switch/bonobo_iid ++ /schemas/apps/panel/objects/bonobo_iid ++ ++ OAFIID:GNOME_FastUserSwitchApplet ++ ++ ++ ++ applets/fast_user_switch/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id ++ applets/fast_user_switch/tooltip/schemas/apps/panel/objects/tooltip ++ applets/fast_user_switch/use_custom_icon/schemas/apps/panel/objects/use_custom_icon ++ applets/fast_user_switch/custom_icon/schemas/apps/panel/objects/custom_icon ++ applets/fast_user_switch/use_menu_path/schemas/apps/panel/objects/use_menu_path ++ applets/fast_user_switch/menu_path/schemas/apps/panel/objects/menu_path ++ applets/fast_user_switch/launcher_location/schemas/apps/panel/objects/launcher_location ++ applets/fast_user_switch/action_type/schemas/apps/panel/objects/action_type ++ + + + +@@ -618,7 +786,7 @@ + applets/workspace_switcher/position + /schemas/apps/panel/objects/position + +- 0 ++ 1 + + + +@@ -652,6 +820,59 @@ + applets/workspace_switcher/launcher_location/schemas/apps/panel/objects/launcher_location + applets/workspace_switcher/action_type/schemas/apps/panel/objects/action_type + ++ ++ ++ ++ applets/trashapplet/object_type ++ /schemas/apps/panel/objects/object_type ++ ++ bonobo-applet ++ ++ ++ ++ applets/trashapplet/toplevel_id ++ /schemas/apps/panel/objects/toplevel_id ++ ++ bottom_panel ++ ++ ++ ++ applets/trashapplet/position ++ /schemas/apps/panel/objects/position ++ ++ 0 ++ ++ ++ ++ applets/trashapplet/panel_right_stick ++ /schemas/apps/panel/objects/panel_right_stick ++ ++ true ++ ++ ++ ++ applets/trashapplet/locked ++ /schemas/apps/panel/objects/locked ++ ++ true ++ ++ ++ ++ applets/trashapplet/bonobo_iid ++ /schemas/apps/panel/objects/bonobo_iid ++ ++ OAFIID:GNOME_Panel_TrashApplet ++ ++ ++ ++ applets/trashapplet/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id ++ applets/trashapplet/tooltip/schemas/apps/panel/objects/tooltip ++ applets/trashapplet/use_custom_icon/schemas/apps/panel/objects/use_custom_icon ++ applets/trashapplet/custom_icon/schemas/apps/panel/objects/custom_icon ++ applets/trashapplet/use_menu_path/schemas/apps/panel/objects/use_menu_path ++ applets/trashapplet/menu_path/schemas/apps/panel/objects/menu_path ++ applets/trashapplet/launcher_location/schemas/apps/panel/objects/launcher_location ++ + + + --- gnome-panel-2.27.91.orig/debian/patches/27_handle_overlapping_monitors.patch +++ gnome-panel-2.27.91/debian/patches/27_handle_overlapping_monitors.patch @@ -0,0 +1,267 @@ +# Upstream: http://bugzilla.gnome.org/show_bug.cgi?id=530969 +# Patch: http://bugzilla.gnome.org/attachment.cgi?id=129962&action=view +# Description: Handle overlapping monitors by just using the largest one +# among the overlapping ones. + +From a91d9891aa40db9ce9ac3ffc64cb26ba948b1fb0 Mon Sep 17 00:00:00 2001 +From: Federico Mena Quintero +Date: Mon, 2 Mar 2009 18:39:20 -0600 +Subject: [PATCH 1/4] bgo530969 - Ignore overlapping monitors and just keep the largest one + +This is to avoid the following. If you have a high-resolution and a +low-resolution monitor, but both have the same offset in the RANDR +setup, i.e. they overlap, then the panel will appear "in the middle" +of the smallest monitor, instead of at its edge. This is quite common +with high-resolution laptops and low-resolution external +projectors/monitors. + +Signed-off-by: Federico Mena Quintero +--- + gnome-panel/panel-multiscreen.c | 113 ++++++++++++++++++++++++++++++++++++--- + 1 files changed, 106 insertions(+), 7 deletions(-) + +Index: gnome-panel-2.26.0/gnome-panel/panel-multiscreen.c +=================================================================== +--- gnome-panel-2.26.0.orig/gnome-panel/panel-multiscreen.c 2009-03-16 22:37:12.000000000 +0000 ++++ gnome-panel-2.26.0/gnome-panel/panel-multiscreen.c 2009-03-31 13:41:20.000000000 +0100 +@@ -60,6 +60,111 @@ + reinit_id = g_idle_add (panel_multiscreen_reinit_idle, NULL); + } + ++static gboolean ++overlaps (GdkRectangle *a, GdkRectangle *b) ++{ ++ return gdk_rectangle_intersect (a, b, NULL); ++} ++ ++static long ++pixels_in_rectangle (GdkRectangle *r) ++{ ++ return (long) r->width * r->height; ++} ++ ++static void ++get_monitors_for_screen (GdkScreen *screen, int *monitors_ret, GdkRectangle **geometries_ret) ++{ ++ int num_monitors; ++ GdkRectangle *geometries; ++ int i; ++ ++ num_monitors = gdk_screen_get_n_monitors (screen); ++ geometries = g_new (GdkRectangle, num_monitors); ++ ++ for (i = 0; i < num_monitors; i++) ++ gdk_screen_get_monitor_geometry (screen, i, &(geometries[i])); ++ ++ /* http://bugzilla.gnome.org/show_bug.cgi?id=530969 ++ * https://bugzilla.novell.com/show_bug.cgi?id=310208 ++ * and many other such bugs... ++ * ++ * RANDR sometimes gives us monitors that overlap (i.e. outputs whose ++ * bounding rectangles overlap). This is sometimes right and sometimes ++ * wrong: ++ * ++ * * Right - two 1024x768 outputs at the same offset (0, 0) that show ++ * the same thing. Think "laptop plus projector with the same ++ * resolution". ++ * ++ * * Wrong - one 1280x1024 output ("laptop internal LCD") and another ++ * 1024x768 output ("external monitor"), both at offset (0, 0). ++ * There is no way for the monitor with the small resolution to show ++ * the complete image from the laptop's LCD, unless one uses panning ++ * (but nobody wants panning, right!?). ++ * ++ * With overlapping monitors, we may end up placing the panel with ++ * respect to the "wrong" one. This is always wrong, as the panel ++ * appears "in the middle of the screen" of the monitor with the smaller ++ * resolution, instead of at the edge. ++ * ++ * Our strategy is to find the subsets of overlapping monitors, and ++ * "compress" each such set to being like if there were a single monitor ++ * with the biggest resolution of each of that set's monitors. Say we ++ * have four monitors ++ * ++ * A, B, C, D ++ * ++ * where B and D overlap. In that case, we'll generate a new list that ++ * looks like ++ * ++ * A, MAX(B, D), C ++ * ++ * with three monitors. ++ * ++ * NOTE FOR THE FUTURE: We could avoid most of this mess if we had a ++ * concept of a "primary monitor". Also, we could look at each output's ++ * name or properties to see if it is the built-in LCD in a laptop. ++ * However, with GTK+ 2.14.x we don't get output names, since it gets ++ * the list outputs from Xinerama, not RANDR (and Xinerama doesn't ++ * provide output names). ++ */ ++ ++ for (i = 0; i < num_monitors; i++) { ++ long max_pixels; ++ int j; ++ ++ max_pixels = pixels_in_rectangle (&geometries[i]); ++ ++ j = i + 1; ++ ++ while (j < num_monitors) { ++ if (overlaps (&geometries[i], &geometries[j])) { ++ long pixels; ++ ++ pixels = pixels_in_rectangle (&geometries[j]); ++ if (pixels > max_pixels) { ++ max_pixels = pixels; ++ geometries[i] = geometries[j]; /* keep the maximum */ ++ } ++ ++ /* Shift the remaining monitors to the left */ ++ if (num_monitors - j - 1 > 0) ++ memmove (&geometries[j], ++ &geometries[j + 1], ++ sizeof (geometries[0]) * (num_monitors - j - 1)); ++ ++ num_monitors--; ++ g_assert (num_monitors > 0); ++ } else ++ j++; ++ } ++ } ++ ++ *monitors_ret = num_monitors; ++ *geometries_ret = geometries; ++} ++ + void + panel_multiscreen_init (void) + { +@@ -77,7 +182,6 @@ + + for (i = 0; i < screens; i++) { + GdkScreen *screen; +- int j; + + screen = gdk_display_get_screen (display, i); + +@@ -90,12 +194,7 @@ + g_signal_connect (screen, "monitors-changed", + G_CALLBACK (panel_multiscreen_queue_reinit), NULL); + +- monitors [i] = gdk_screen_get_n_monitors (screen); +- geometries [i] = g_new0 (GdkRectangle, monitors [i]); +- +- for (j = 0; j < monitors [i]; j++) +- gdk_screen_get_monitor_geometry ( +- screen, j, &geometries [i][j]); ++ get_monitors_for_screen (screen, &(monitors[i]), &(geometries[i])); + } + + initialized = TRUE; +@@ -234,6 +333,61 @@ + return retval; + } + ++static int ++axis_distance (int p, int axis_start, int axis_size) ++{ ++ if (p >= axis_start && p < axis_start + axis_size) ++ return 0; ++ else if (p < axis_start) ++ return axis_start - p; ++ else ++ return p - (axis_start + axis_size - 1); ++} ++ ++/* The panel can't use gdk_screen_get_monitor_at_point() since it has its own view of which ++ * monitors are present. Look at get_monitors_for_screen() above to see why. ++ */ ++int ++panel_multiscreen_get_monitor_at_point (GdkScreen *screen, int x, int y) ++{ ++ int n_screen; ++ int i; ++ int n_monitors; ++ GdkRectangle *geoms; ++ int min_dist_squared; ++ int closest_monitor; ++ ++ g_return_val_if_fail (GDK_IS_SCREEN (screen), 0); /* not -1 as callers expect a real monitor */ ++ ++ n_screen = gdk_screen_get_number (screen); ++ ++ n_monitors = monitors[n_screen]; ++ geoms = geometries[n_screen]; ++ ++ min_dist_squared = G_MAXINT32; ++ closest_monitor = 0; ++ ++ for (i = 0; i < n_monitors; i++) { ++ int dist_x, dist_y; ++ int dist_squared; ++ ++ dist_x = axis_distance (x, geoms[i].x, geoms[i].width); ++ dist_y = axis_distance (y, geoms[i].y, geoms[i].height); ++ ++ if (dist_x == 0 && dist_y == 0) ++ return i; ++ ++ dist_squared = dist_x * dist_x + dist_y * dist_y; ++ ++ if (dist_squared < min_dist_squared) { ++ min_dist_squared = dist_squared; ++ closest_monitor = i; ++ } ++ } ++ ++ return closest_monitor; ++} ++ + typedef struct { + int x0; + int y0; +Index: gnome-panel-2.26.0/gnome-panel/panel-multiscreen.h +=================================================================== +--- gnome-panel-2.26.0.orig/gnome-panel/panel-multiscreen.h 2009-03-16 22:37:12.000000000 +0000 ++++ gnome-panel-2.26.0/gnome-panel/panel-multiscreen.h 2009-03-31 13:40:36.000000000 +0100 +@@ -43,6 +43,9 @@ + int panel_multiscreen_height (GdkScreen *screen, + int monitor); + int panel_multiscreen_locate_widget_monitor (GtkWidget *widget); ++int panel_multiscreen_get_monitor_at_point (GdkScreen *screen, ++ int x, ++ int y); + void panel_multiscreen_is_at_visible_extreme (GdkScreen *screen, + int monitor, + gboolean *leftmost, +Index: gnome-panel-2.26.0/gnome-panel/panel-toplevel.c +=================================================================== +--- gnome-panel-2.26.0.orig/gnome-panel/panel-toplevel.c 2009-03-16 22:37:12.000000000 +0000 ++++ gnome-panel-2.26.0/gnome-panel/panel-toplevel.c 2009-03-31 13:40:36.000000000 +0100 +@@ -616,7 +616,7 @@ + + screen = gtk_window_get_screen (GTK_WINDOW (toplevel)); + +- monitor = gdk_screen_get_monitor_at_point (screen, pointer_x, pointer_y); ++ monitor = panel_multiscreen_get_monitor_at_point (screen, pointer_x, pointer_y); + + if (toplevel->priv->geometry.height < toplevel->priv->geometry.width) + vborder = hborder = (3 * toplevel->priv->geometry.height) >> 1; +@@ -728,7 +728,7 @@ + toplevel->priv->orientation & PANEL_HORIZONTAL_MASK) + new_orientation = PANEL_ORIENTATION_BOTTOM; + +- new_monitor = gdk_screen_get_monitor_at_point (screen, new_x, new_y); ++ new_monitor = panel_multiscreen_get_monitor_at_point (screen, new_x, new_y); + + panel_toplevel_get_monitor_geometry ( + toplevel, NULL, NULL, &monitor_width, &monitor_height); +@@ -2113,7 +2113,7 @@ + break; + } + +- monitor = gdk_screen_get_monitor_at_point (screen, x, y); ++ monitor = panel_multiscreen_get_monitor_at_point (screen, x, y); + + panel_toplevel_set_monitor (toplevel, monitor); + --- gnome-panel-2.27.91.orig/debian/patches/20_fusa_migration_note_i18n.patch +++ gnome-panel-2.27.91/debian/patches/20_fusa_migration_note_i18n.patch @@ -0,0 +1,14 @@ +=== modified file 'po/POTFILES.in' +Index: gnome-panel-2.26.0/po/POTFILES.in +=================================================================== +--- gnome-panel-2.26.0.orig/po/POTFILES.in 2009-03-26 15:04:51.000000000 +0100 ++++ gnome-panel-2.26.0/po/POTFILES.in 2009-03-26 15:05:29.000000000 +0100 +@@ -1,6 +1,8 @@ + # List of source files containing translatable strings. + # Please keep this file sorted alphabetically. + [encoding: UTF-8] ++[type: gettext/rfc822deb]debian/fusa-applet.note.in ++debian/migrate-fusa-config.py + applets/clock/GNOME_ClockApplet.xml + applets/clock/GNOME_ClockApplet_Factory.server.in.in + applets/clock/calendar-client.c --- gnome-panel-2.27.91.orig/debian/patches/17_about-ubuntu-translation.patch +++ gnome-panel-2.27.91/debian/patches/17_about-ubuntu-translation.patch @@ -0,0 +1,9 @@ +Index: gnome-panel-2.25.3/po/POTFILES.in +=================================================================== +--- gnome-panel-2.25.3.orig/po/POTFILES.in 2008-12-10 12:16:24.000000000 +0100 ++++ gnome-panel-2.25.3/po/POTFILES.in 2009-01-07 15:10:33.000000000 +0100 +@@ -79,3 +79,4 @@ + libpanel-applet/GNOME_Panel_TestApplet.server.in + libpanel-applet/panel-test-applets.c + [type: gettext/glade]libpanel-applet/panel-test-applets.ui ++debian/ubuntu-about.desktop.in --- gnome-panel-2.27.91.orig/debian/patches/30_disable-initial-animation.patch +++ gnome-panel-2.27.91/debian/patches/30_disable-initial-animation.patch @@ -0,0 +1,58 @@ +# Upstream: http://bugzilla.gnome.org/show_bug.cgi?id=575938 +# Patch: http://bugzilla.gnome.org/attachment.cgi?id=130957&action=view +# Description: allow the initial animation to be disabled +# +Index: gnome-panel-2.27.91/config.h.in +=================================================================== +--- gnome-panel-2.27.91.orig/config.h.in 2009-08-25 23:45:23.000000000 +1000 ++++ gnome-panel-2.27.91/config.h.in 2009-08-26 12:34:33.000000000 +1000 +@@ -3,6 +3,9 @@ + /* Defined when compiling the clock applet in-process */ + #undef CLOCK_INPROCESS + ++/* Define to disable initial animation */ ++#undef DISABLE_INITIAL_ANIMATION ++ + /* always defined to indicate that i18n is enabled */ + #undef ENABLE_NLS + +Index: gnome-panel-2.27.91/configure.in +=================================================================== +--- gnome-panel-2.27.91.orig/configure.in 2009-08-25 23:32:25.000000000 +1000 ++++ gnome-panel-2.27.91/configure.in 2009-08-26 12:34:33.000000000 +1000 +@@ -219,6 +219,15 @@ + fi; fi; fi; fi + done + ++# Make it possible to disable initial slide-in animation ++AC_ARG_ENABLE(initial-animation, ++ AC_HELP_STRING([--disable-initial-animation], ++ [disable the initial slide-in animation of panels]), ++ [AS_IF([test "x$enable_initial_animation" = xno], ++ [AC_DEFINE([DISABLE_INITIAL_ANIMATION], [1], ++ [Define to disable initial animation])])], ++ []) ++ + AM_CONDITIONAL(CLOCK_INPROCESS, test -n "$CLOCK_COMPILE_INPROCESS") + AM_CONDITIONAL(FISH_INPROCESS, test -n "$FISH_COMPILE_INPROCESS") + AM_CONDITIONAL(NOTIFICATION_AREA_INPROCESS, test -n "$NOTIFICATION_AREA_COMPILE_INPROCESS") +Index: gnome-panel-2.27.91/gnome-panel/panel-toplevel.c +=================================================================== +--- gnome-panel-2.27.91.orig/gnome-panel/panel-toplevel.c 2009-08-21 20:31:49.000000000 +1000 ++++ gnome-panel-2.27.91/gnome-panel/panel-toplevel.c 2009-08-26 12:34:33.000000000 +1000 +@@ -2936,6 +2936,7 @@ + static void + panel_toplevel_initially_hide (PanelToplevel *toplevel) + { ++#ifndef DISABLE_INITIAL_ANIMATION + if (!toplevel->priv->attached) { + toplevel->priv->initial_animation_done = FALSE; + +@@ -2945,6 +2946,7 @@ + toplevel->priv->state = PANEL_STATE_AUTO_HIDDEN; + gtk_widget_queue_resize (GTK_WIDGET (toplevel)); + } else ++#endif /* DISABLE_INITIAL_ANIMATION */ + toplevel->priv->initial_animation_done = TRUE; + } + --- gnome-panel-2.27.91.orig/debian/patches/25_inode_directory_fixup.patch +++ gnome-panel-2.27.91/debian/patches/25_inode_directory_fixup.patch @@ -0,0 +1,46 @@ +=== modified file 'gnome-panel/main.c' +Index: gnome-panel-2.26.2/gnome-panel/main.c +=================================================================== +--- gnome-panel-2.26.2.orig/gnome-panel/main.c 2009-06-22 23:56:21.000000000 +0100 ++++ gnome-panel-2.26.2/gnome-panel/main.c 2009-06-22 23:56:45.000000000 +0100 +@@ -110,6 +110,40 @@ + * connecting to the session manager */ + panel_session_init (); + ++ /* ubuntu specifc cleanup for bug #260492 - this needs to be kept ++ * until the next LTS after hardy (8.04) is released ++ */ ++ GAppInfo *app, *new_app = NULL; ++ GConfClient *gc = gconf_client_get_default(); ++ GList *l_start, *l; ++ if(gconf_client_get_bool(gc, "/apps/panel/need_directory_fixup", NULL)) ++ { ++ app = g_app_info_get_default_for_type ("inode/directory", FALSE); ++ if(app && strcmp(g_app_info_get_id(app), "nautilus-folder-handler.desktop") != 0) ++ { ++ g_message("inode/directory points to '%s' - fixing", g_app_info_get_id(app)); ++ l_start = l = g_app_info_get_all_for_type("inode/directory"); ++ while(l != NULL) ++ { ++ if(strcmp(g_app_info_get_id(G_APP_INFO(l->data)), ++ "nautilus-folder-handler.desktop") == 0) ++ new_app = g_app_info_dup(l->data); ++ g_object_unref(G_OBJECT(l->data)); ++ l=g_list_next(l); ++ } ++ if(new_app) ++ { ++ g_app_info_set_as_default_for_type (new_app, "inode/directory", NULL); ++ g_object_unref(new_app); ++ } ++ g_list_free(l_start); ++ g_object_unref(app); ++ } ++ gconf_client_set_bool(gc, "/apps/panel/need_directory_fixup", FALSE, NULL); ++ } ++ g_object_unref(gc); ++ /* end of ubuntu specific code */ ++ + gtk_main (); + + panel_lockdown_finalize (); --- gnome-panel-2.27.91.orig/debian/patches/18_lockdown_lock_editor.patch +++ gnome-panel-2.27.91/debian/patches/18_lockdown_lock_editor.patch @@ -0,0 +1,35 @@ +# Description: lockdown locks the menu editor entry too +# Upstream: http://bugzilla.gnome.org/show_bug.cgi?id=499148 +# Ubuntu: https://bugs.launchpad.net/bugs/4712 +Index: gnome-panel-2.27.4/gnome-panel/panel-menu-bar.c +=================================================================== +--- gnome-panel-2.27.4.orig/gnome-panel/panel-menu-bar.c 2009-08-05 15:58:38.000000000 +0100 ++++ gnome-panel-2.27.4/gnome-panel/panel-menu-bar.c 2009-08-05 15:58:50.000000000 +0100 +@@ -345,8 +345,9 @@ + _("_Help"), + NULL); + +- if (panel_is_program_in_path ("alacarte") || +- panel_is_program_in_path ("gmenu-simple-editor")) { ++ if (!panel_lockdown_get_locked_down () && ++ (panel_is_program_in_path ("alacarte") || ++ panel_is_program_in_path ("gmenu-simple-editor"))) { + panel_applet_add_callback (menubar->priv->info, + "edit", + NULL, +Index: gnome-panel-2.27.4/gnome-panel/panel-menu-button.c +=================================================================== +--- gnome-panel-2.27.4.orig/gnome-panel/panel-menu-button.c 2009-08-05 15:58:38.000000000 +0100 ++++ gnome-panel-2.27.4/gnome-panel/panel-menu-button.c 2009-08-05 15:58:50.000000000 +0100 +@@ -662,8 +662,9 @@ + + panel_applet_add_callback (info, "help", GTK_STOCK_HELP, _("_Help"), NULL); + +- if (panel_is_program_in_path ("alacarte") || +- panel_is_program_in_path ("gmenu-simple-editor")) ++ if (!panel_lockdown_get_locked_down () && ++ (panel_is_program_in_path ("alacarte") || ++ panel_is_program_in_path ("gmenu-simple-editor"))) + panel_applet_add_callback (info, "edit", NULL, + _("_Edit Menus"), NULL); + --- gnome-panel-2.27.91.orig/debian/patches/70_relibtoolize.patch +++ gnome-panel-2.27.91/debian/patches/70_relibtoolize.patch @@ -0,0 +1,3956 @@ +Index: gnome-panel-2.27.91/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/Makefile.in 2009-08-25 15:45:28.000000000 +0200 ++++ gnome-panel-2.27.91/Makefile.in 2009-09-01 10:52:22.000000000 +0200 +@@ -235,6 +235,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/aclocal.m4 +=================================================================== +--- gnome-panel-2.27.91.orig/aclocal.m4 2009-08-25 15:45:18.000000000 +0200 ++++ gnome-panel-2.27.91/aclocal.m4 2009-09-01 10:52:15.000000000 +0200 +@@ -13,1913 +13,1913 @@ + + m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +-m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.63],, +-[m4_warning([this file was generated for autoconf 2.63. ++m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.64],, ++[m4_warning([this file was generated for autoconf 2.64. + You have another version of autoconf. It may work, but is not guaranteed to. + If you have problems, you may need to regenerate the build system entirely. + To do so, use the procedure documented by the package, typically `autoreconf'.])]) + +-# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++dnl AM_GCONF_SOURCE_2 ++dnl Defines GCONF_SCHEMA_CONFIG_SOURCE which is where you should install schemas ++dnl (i.e. pass to gconftool-2 ++dnl Defines GCONF_SCHEMA_FILE_DIR which is a filesystem directory where ++dnl you should install foo.schemas files ++dnl + +-# AM_AUTOMAKE_VERSION(VERSION) +-# ---------------------------- +-# Automake X.Y traces this macro to ensure aclocal.m4 has been +-# generated from the m4 files accompanying Automake X.Y. +-# (This private macro should not be called outside this file.) +-AC_DEFUN([AM_AUTOMAKE_VERSION], +-[am__api_version='1.11' +-dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +-dnl require some minimum version. Point them to the right macro. +-m4_if([$1], [1.11], [], +- [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +-]) ++AC_DEFUN([AM_GCONF_SOURCE_2], ++[ ++ if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then ++ GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source` ++ else ++ GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE ++ fi + +-# _AM_AUTOCONF_VERSION(VERSION) +-# ----------------------------- +-# aclocal traces this macro to find the Autoconf version. +-# This is a private macro too. Using m4_define simplifies +-# the logic in aclocal, which can simply ignore this definition. +-m4_define([_AM_AUTOCONF_VERSION], []) ++ AC_ARG_WITH([gconf-source], ++ AC_HELP_STRING([--with-gconf-source=sourceaddress], ++ [Config database for installing schema files.]), ++ [GCONF_SCHEMA_CONFIG_SOURCE="$withval"],) + +-# AM_SET_CURRENT_AUTOMAKE_VERSION +-# ------------------------------- +-# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +-# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. +-AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +-[AM_AUTOMAKE_VERSION([1.11])dnl +-m4_ifndef([AC_AUTOCONF_VERSION], +- [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +-_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) ++ AC_SUBST(GCONF_SCHEMA_CONFIG_SOURCE) ++ AC_MSG_RESULT([Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation]) + +-# AM_AUX_DIR_EXPAND -*- Autoconf -*- ++ if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then ++ GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas' ++ fi + +-# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++ AC_ARG_WITH([gconf-schema-file-dir], ++ AC_HELP_STRING([--with-gconf-schema-file-dir=dir], ++ [Directory for installing schema files.]), ++ [GCONF_SCHEMA_FILE_DIR="$withval"],) + +-# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +-# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to +-# `$srcdir', `$srcdir/..', or `$srcdir/../..'. ++ AC_SUBST(GCONF_SCHEMA_FILE_DIR) ++ AC_MSG_RESULT([Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files]) ++ ++ AC_ARG_ENABLE(schemas-install, ++ AC_HELP_STRING([--disable-schemas-install], ++ [Disable the schemas installation]), ++ [case ${enableval} in ++ yes|no) ;; ++ *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-install]) ;; ++ esac]) ++ AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no]) ++]) ++ ++# Copyright (C) 1995-2002 Free Software Foundation, Inc. ++# Copyright (C) 2001-2003,2004 Red Hat, Inc. + # +-# Of course, Automake must honor this variable whenever it calls a +-# tool from the auxiliary directory. The problem is that $srcdir (and +-# therefore $ac_aux_dir as well) can be either absolute or relative, +-# depending on how configure is run. This is pretty annoying, since +-# it makes $ac_aux_dir quite unusable in subdirectories: in the top +-# source directory, any form will work fine, but in subdirectories a +-# relative path needs to be adjusted first. ++# This file is free software, distributed under the terms of the GNU ++# General Public License. As a special exception to the GNU General ++# Public License, this file may be distributed as part of a program ++# that contains a configuration script generated by Autoconf, under ++# the same distribution terms as the rest of that program. + # +-# $ac_aux_dir/missing +-# fails when called from a subdirectory if $ac_aux_dir is relative +-# $top_srcdir/$ac_aux_dir/missing +-# fails if $ac_aux_dir is absolute, +-# fails when called from a subdirectory in a VPATH build with +-# a relative $ac_aux_dir ++# This file can be copied and used freely without restrictions. It can ++# be used in projects which are not available under the GNU Public License ++# but which still want to provide support for the GNU gettext functionality. + # +-# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +-# are both prefixed by $srcdir. In an in-source build this is usually +-# harmless because $srcdir is `.', but things will broke when you +-# start a VPATH build or use an absolute $srcdir. ++# Macro to add for using GNU gettext. ++# Ulrich Drepper , 1995, 1996 + # +-# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +-# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +-# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +-# and then we would define $MISSING as +-# MISSING="\${SHELL} $am_aux_dir/missing" +-# This will work as long as MISSING is not called from configure, because +-# unfortunately $(top_srcdir) has no meaning in configure. +-# However there are other variables, like CC, which are often used in +-# configure, and could therefore not use this "fixed" $ac_aux_dir. ++# Modified to never use included libintl. ++# Owen Taylor , 12/15/1998 + # +-# Another solution, used here, is to always expand $ac_aux_dir to an +-# absolute PATH. The drawback is that using absolute paths prevent a +-# configured tree to be moved without reconfiguration. +- +-AC_DEFUN([AM_AUX_DIR_EXPAND], +-[dnl Rely on autoconf to set up CDPATH properly. +-AC_PREREQ([2.50])dnl +-# expand $ac_aux_dir to an absolute path +-am_aux_dir=`cd $ac_aux_dir && pwd` +-]) +- +-# AM_CONDITIONAL -*- Autoconf -*- +- +-# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 +-# Free Software Foundation, Inc. ++# Major rework to remove unused code ++# Owen Taylor , 12/11/2002 + # +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++# Added better handling of ALL_LINGUAS from GNU gettext version ++# written by Bruno Haible, Owen Taylor 5/30/3002 ++# ++# Modified to require ngettext ++# Matthias Clasen 08/06/2004 ++# ++# We need this here as well, since someone might use autoconf-2.5x ++# to configure GLib then an older version to configure a package ++# using AM_GLIB_GNU_GETTEXT ++AC_PREREQ(2.53) + +-# serial 9 ++dnl ++dnl We go to great lengths to make sure that aclocal won't ++dnl try to pull in the installed version of these macros ++dnl when running aclocal in the glib directory. ++dnl ++m4_copy([AC_DEFUN],[glib_DEFUN]) ++m4_copy([AC_REQUIRE],[glib_REQUIRE]) ++dnl ++dnl At the end, if we're not within glib, we'll define the public ++dnl definitions in terms of our private definitions. ++dnl + +-# AM_CONDITIONAL(NAME, SHELL-CONDITION) +-# ------------------------------------- +-# Define a conditional. +-AC_DEFUN([AM_CONDITIONAL], +-[AC_PREREQ(2.52)dnl +- ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], +- [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +-AC_SUBST([$1_TRUE])dnl +-AC_SUBST([$1_FALSE])dnl +-_AM_SUBST_NOTMAKE([$1_TRUE])dnl +-_AM_SUBST_NOTMAKE([$1_FALSE])dnl +-m4_define([_AM_COND_VALUE_$1], [$2])dnl +-if $2; then +- $1_TRUE= +- $1_FALSE='#' ++# GLIB_LC_MESSAGES ++#-------------------- ++glib_DEFUN([GLIB_LC_MESSAGES], ++ [AC_CHECK_HEADERS([locale.h]) ++ if test $ac_cv_header_locale_h = yes; then ++ AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, ++ [AC_TRY_LINK([#include ], [return LC_MESSAGES], ++ am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) ++ if test $am_cv_val_LC_MESSAGES = yes; then ++ AC_DEFINE(HAVE_LC_MESSAGES, 1, ++ [Define if your file defines LC_MESSAGES.]) ++ fi ++ fi]) ++ ++# GLIB_PATH_PROG_WITH_TEST ++#---------------------------- ++dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, ++dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) ++glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], ++[# Extract the first word of "$2", so it can be a program name with args. ++set dummy $2; ac_word=[$]2 ++AC_MSG_CHECKING([for $ac_word]) ++AC_CACHE_VAL(ac_cv_path_$1, ++[case "[$]$1" in ++ /*) ++ ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ++ ;; ++ *) ++ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" ++ for ac_dir in ifelse([$5], , $PATH, [$5]); do ++ test -z "$ac_dir" && ac_dir=. ++ if test -f $ac_dir/$ac_word; then ++ if [$3]; then ++ ac_cv_path_$1="$ac_dir/$ac_word" ++ break ++ fi ++ fi ++ done ++ IFS="$ac_save_ifs" ++dnl If no 4th arg is given, leave the cache variable unset, ++dnl so AC_PATH_PROGS will keep looking. ++ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ++])dnl ++ ;; ++esac])dnl ++$1="$ac_cv_path_$1" ++if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then ++ AC_MSG_RESULT([$]$1) + else +- $1_TRUE='#' +- $1_FALSE= ++ AC_MSG_RESULT(no) + fi +-AC_CONFIG_COMMANDS_PRE( +-[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then +- AC_MSG_ERROR([[conditional "$1" was never defined. +-Usually this means the macro was only invoked conditionally.]]) +-fi])]) +- +-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 +-# Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++AC_SUBST($1)dnl ++]) + +-# serial 10 ++# GLIB_WITH_NLS ++#----------------- ++glib_DEFUN([GLIB_WITH_NLS], ++ dnl NLS is obligatory ++ [USE_NLS=yes ++ AC_SUBST(USE_NLS) + +-# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be +-# written in clear, in which case automake, when reading aclocal.m4, +-# will think it sees a *use*, and therefore will trigger all it's +-# C support machinery. Also note that it means that autoscan, seeing +-# CC etc. in the Makefile, will ask for an AC_PROG_CC use... ++ gt_cv_have_gettext=no + ++ CATOBJEXT=NONE ++ XGETTEXT=: ++ INTLLIBS= + +-# _AM_DEPENDENCIES(NAME) +-# ---------------------- +-# See how the compiler implements dependency checking. +-# NAME is "CC", "CXX", "GCJ", or "OBJC". +-# We try a few techniques and use that to set a single cache variable. +-# +-# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +-# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +-# dependency, and given that the user is not expected to run this macro, +-# just rely on AC_PROG_CC. +-AC_DEFUN([_AM_DEPENDENCIES], +-[AC_REQUIRE([AM_SET_DEPDIR])dnl +-AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +-AC_REQUIRE([AM_MAKE_INCLUDE])dnl +-AC_REQUIRE([AM_DEP_TRACK])dnl +- +-ifelse([$1], CC, [depcc="$CC" am_compiler_list=], +- [$1], CXX, [depcc="$CXX" am_compiler_list=], +- [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], +- [$1], UPC, [depcc="$UPC" am_compiler_list=], +- [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], +- [depcc="$$1" am_compiler_list=]) +- +-AC_CACHE_CHECK([dependency style of $depcc], +- [am_cv_$1_dependencies_compiler_type], +-[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then +- # We make a subdir and do the tests there. Otherwise we can end up +- # making bogus files that we don't know about and never remove. For +- # instance it was reported that on HP-UX the gcc test will end up +- # making a dummy file named `D' -- because `-MD' means `put the output +- # in D'. +- mkdir conftest.dir +- # Copy depcomp to subdir because otherwise we won't find it if we're +- # using a relative directory. +- cp "$am_depcomp" conftest.dir +- cd conftest.dir +- # We will build objects and dependencies in a subdirectory because +- # it helps to detect inapplicable dependency modes. For instance +- # both Tru64's cc and ICC support -MD to output dependencies as a +- # side effect of compilation, but ICC will put the dependencies in +- # the current directory while Tru64 will put them in the object +- # directory. +- mkdir sub +- +- am_cv_$1_dependencies_compiler_type=none +- if test "$am_compiler_list" = ""; then +- am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` +- fi +- am__universal=false +- m4_case([$1], [CC], +- [case " $depcc " in #( +- *\ -arch\ *\ -arch\ *) am__universal=true ;; +- esac], +- [CXX], +- [case " $depcc " in #( +- *\ -arch\ *\ -arch\ *) am__universal=true ;; +- esac]) +- +- for depmode in $am_compiler_list; do +- # Setup a source with many dependencies, because some compilers +- # like to wrap large dependency lists on column 80 (with \), and +- # we should not choose a depcomp mode which is confused by this. +- # +- # We need to recreate these files for each test, as the compiler may +- # overwrite some of them when testing with obscure command lines. +- # This happens at least with the AIX C compiler. +- : > sub/conftest.c +- for i in 1 2 3 4 5 6; do +- echo '#include "conftst'$i'.h"' >> sub/conftest.c +- # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with +- # Solaris 8's {/usr,}/bin/sh. +- touch sub/conftst$i.h +- done +- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf ++ AC_CHECK_HEADER(libintl.h, ++ [gt_cv_func_dgettext_libintl="no" ++ libintl_extra_libs="" + +- # We check with `-c' and `-o' for the sake of the "dashmstdout" +- # mode. It turns out that the SunPro C++ compiler does not properly +- # handle `-M -o', and we need to detect this. Also, some Intel +- # versions had trouble with output in subdirs +- am__obj=sub/conftest.${OBJEXT-o} +- am__minus_obj="-o $am__obj" +- case $depmode in +- gcc) +- # This depmode causes a compiler race in universal mode. +- test "$am__universal" = false || continue +- ;; +- nosideeffect) +- # after this tag, mechanisms are not by side-effect, so they'll +- # only be used when explicitly requested +- if test "x$enable_dependency_tracking" = xyes; then +- continue +- else +- break ++ # ++ # First check in libc ++ # ++ AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, ++ [AC_TRY_LINK([ ++#include ++], ++ [return !ngettext ("","", 1)], ++ gt_cv_func_ngettext_libc=yes, ++ gt_cv_func_ngettext_libc=no) ++ ]) ++ ++ if test "$gt_cv_func_ngettext_libc" = "yes" ; then ++ AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, ++ [AC_TRY_LINK([ ++#include ++], ++ [return !dgettext ("","")], ++ gt_cv_func_dgettext_libc=yes, ++ gt_cv_func_dgettext_libc=no) ++ ]) + fi +- ;; +- msvisualcpp | msvcmsys) +- # This compiler won't grok `-c -o', but also, the minuso test has +- # not run yet. These depmodes are late enough in the game, and +- # so weak that their functioning should not be impacted. +- am__obj=conftest.${OBJEXT-o} +- am__minus_obj= +- ;; +- none) break ;; +- esac +- if depmode=$depmode \ +- source=sub/conftest.c object=$am__obj \ +- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ +- $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ +- >/dev/null 2>conftest.err && +- grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && +- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && +- grep $am__obj sub/conftest.Po > /dev/null 2>&1 && +- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then +- # icc doesn't choke on unknown options, it will just issue warnings +- # or remarks (even with -Werror). So we grep stderr for any message +- # that says an option was ignored or not supported. +- # When given -MP, icc 7.0 and 7.1 complain thusly: +- # icc: Command line warning: ignoring option '-M'; no argument required +- # The diagnosis changed in icc 8.0: +- # icc: Command line remark: option '-MP' not supported +- if (grep 'ignoring option' conftest.err || +- grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else +- am_cv_$1_dependencies_compiler_type=$depmode +- break ++ ++ if test "$gt_cv_func_ngettext_libc" = "yes" ; then ++ AC_CHECK_FUNCS(bind_textdomain_codeset) + fi +- fi +- done +- +- cd .. +- rm -rf conftest.dir +-else +- am_cv_$1_dependencies_compiler_type=none +-fi +-]) +-AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +-AM_CONDITIONAL([am__fastdep$1], [ +- test "x$enable_dependency_tracking" != xno \ +- && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +-]) +- +- +-# AM_SET_DEPDIR +-# ------------- +-# Choose a directory name for dependency files. +-# This macro is AC_REQUIREd in _AM_DEPENDENCIES +-AC_DEFUN([AM_SET_DEPDIR], +-[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +-AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +-]) +- +- +-# AM_DEP_TRACK +-# ------------ +-AC_DEFUN([AM_DEP_TRACK], +-[AC_ARG_ENABLE(dependency-tracking, +-[ --disable-dependency-tracking speeds up one-time build +- --enable-dependency-tracking do not reject slow dependency extractors]) +-if test "x$enable_dependency_tracking" != xno; then +- am_depcomp="$ac_aux_dir/depcomp" +- AMDEPBACKSLASH='\' +-fi +-AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +-AC_SUBST([AMDEPBACKSLASH])dnl +-_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +-]) +- +-# Generate code to set up dependency tracking. -*- Autoconf -*- +- +-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 +-# Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. +- +-#serial 5 + +-# _AM_OUTPUT_DEPENDENCY_COMMANDS +-# ------------------------------ +-AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +-[{ +- # Autoconf 2.62 quotes --file arguments for eval, but not when files +- # are listed without --file. Let's play safe and only enable the eval +- # if we detect the quoting. +- case $CONFIG_FILES in +- *\'*) eval set x "$CONFIG_FILES" ;; +- *) set x $CONFIG_FILES ;; +- esac +- shift +- for mf +- do +- # Strip MF so we end up with the name of the file. +- mf=`echo "$mf" | sed -e 's/:.*$//'` +- # Check whether this is an Automake generated Makefile or not. +- # We used to match only the files named `Makefile.in', but +- # some people rename them; so instead we look at the file content. +- # Grep'ing the first line is not enough: some people post-process +- # each Makefile.in and add a new line on top of each file to say so. +- # Grep'ing the whole file is not good either: AIX grep has a line +- # limit of 2048, but all sed's we know have understand at least 4000. +- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then +- dirpart=`AS_DIRNAME("$mf")` +- else +- continue +- fi +- # Extract the definition of DEPDIR, am__include, and am__quote +- # from the Makefile without running `make'. +- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` +- test -z "$DEPDIR" && continue +- am__include=`sed -n 's/^am__include = //p' < "$mf"` +- test -z "am__include" && continue +- am__quote=`sed -n 's/^am__quote = //p' < "$mf"` +- # When using ansi2knr, U may be empty or an underscore; expand it +- U=`sed -n 's/^U = //p' < "$mf"` +- # Find all dependency output files, they are included files with +- # $(DEPDIR) in their names. We invoke sed twice because it is the +- # simplest approach to changing $(DEPDIR) to its actual value in the +- # expansion. +- for file in `sed -n " +- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ +- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do +- # Make sure the directory exists. +- test -f "$dirpart/$file" && continue +- fdir=`AS_DIRNAME(["$file"])` +- AS_MKDIR_P([$dirpart/$fdir]) +- # echo "creating $dirpart/$file" +- echo '# dummy' > "$dirpart/$file" +- done +- done +-} +-])# _AM_OUTPUT_DEPENDENCY_COMMANDS ++ # ++ # If we don't have everything we want, check in libintl ++ # ++ if test "$gt_cv_func_dgettext_libc" != "yes" \ ++ || test "$gt_cv_func_ngettext_libc" != "yes" \ ++ || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then ++ ++ AC_CHECK_LIB(intl, bindtextdomain, ++ [AC_CHECK_LIB(intl, ngettext, ++ [AC_CHECK_LIB(intl, dgettext, ++ gt_cv_func_dgettext_libintl=yes)])]) + ++ if test "$gt_cv_func_dgettext_libintl" != "yes" ; then ++ AC_MSG_CHECKING([if -liconv is needed to use gettext]) ++ AC_MSG_RESULT([]) ++ AC_CHECK_LIB(intl, ngettext, ++ [AC_CHECK_LIB(intl, dcgettext, ++ [gt_cv_func_dgettext_libintl=yes ++ libintl_extra_libs=-liconv], ++ :,-liconv)], ++ :,-liconv) ++ fi + +-# AM_OUTPUT_DEPENDENCY_COMMANDS +-# ----------------------------- +-# This macro should only be invoked once -- use via AC_REQUIRE. +-# +-# This code is only required when automatic dependency tracking +-# is enabled. FIXME. This creates each `.P' file that we will +-# need in order to bootstrap the dependency handling code. +-AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +-[AC_CONFIG_COMMANDS([depfiles], +- [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], +- [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) +-]) ++ # ++ # If we found libintl, then check in it for bind_textdomain_codeset(); ++ # we'll prefer libc if neither have bind_textdomain_codeset(), ++ # and both have dgettext and ngettext ++ # ++ if test "$gt_cv_func_dgettext_libintl" = "yes" ; then ++ glib_save_LIBS="$LIBS" ++ LIBS="$LIBS -lintl $libintl_extra_libs" ++ unset ac_cv_func_bind_textdomain_codeset ++ AC_CHECK_FUNCS(bind_textdomain_codeset) ++ LIBS="$glib_save_LIBS" + +-# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 +-# Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++ if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then ++ gt_cv_func_dgettext_libc=no ++ else ++ if test "$gt_cv_func_dgettext_libc" = "yes" \ ++ && test "$gt_cv_func_ngettext_libc" = "yes"; then ++ gt_cv_func_dgettext_libintl=no ++ fi ++ fi ++ fi ++ fi + +-# serial 8 ++ if test "$gt_cv_func_dgettext_libc" = "yes" \ ++ || test "$gt_cv_func_dgettext_libintl" = "yes"; then ++ gt_cv_have_gettext=yes ++ fi ++ ++ if test "$gt_cv_func_dgettext_libintl" = "yes"; then ++ INTLLIBS="-lintl $libintl_extra_libs" ++ fi ++ ++ if test "$gt_cv_have_gettext" = "yes"; then ++ AC_DEFINE(HAVE_GETTEXT,1, ++ [Define if the GNU gettext() function is already present or preinstalled.]) ++ GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, ++ [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl ++ if test "$MSGFMT" != "no"; then ++ glib_save_LIBS="$LIBS" ++ LIBS="$LIBS $INTLLIBS" ++ AC_CHECK_FUNCS(dcgettext) ++ MSGFMT_OPTS= ++ AC_MSG_CHECKING([if msgfmt accepts -c]) ++ GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ ++msgid "" ++msgstr "" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Project-Id-Version: test 1.0\n" ++"PO-Revision-Date: 2007-02-15 12:01+0100\n" ++"Last-Translator: test \n" ++"Language-Team: C \n" ++"MIME-Version: 1.0\n" ++"Content-Transfer-Encoding: 8bit\n" ++], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) ++ AC_SUBST(MSGFMT_OPTS) ++ AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) ++ GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, ++ [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) ++ AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; ++ return _nl_msg_cat_cntr], ++ [CATOBJEXT=.gmo ++ DATADIRNAME=share], ++ [case $host in ++ *-*-solaris*) ++ dnl On Solaris, if bind_textdomain_codeset is in libc, ++ dnl GNU format message catalog is always supported, ++ dnl since both are added to the libc all together. ++ dnl Hence, we'd like to go with DATADIRNAME=share and ++ dnl and CATOBJEXT=.gmo in this case. ++ AC_CHECK_FUNC(bind_textdomain_codeset, ++ [CATOBJEXT=.gmo ++ DATADIRNAME=share], ++ [CATOBJEXT=.mo ++ DATADIRNAME=lib]) ++ ;; ++ *) ++ CATOBJEXT=.mo ++ DATADIRNAME=lib ++ ;; ++ esac]) ++ LIBS="$glib_save_LIBS" ++ INSTOBJEXT=.mo ++ else ++ gt_cv_have_gettext=no ++ fi ++ fi ++ ]) + +-# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. +-AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) ++ if test "$gt_cv_have_gettext" = "yes" ; then ++ AC_DEFINE(ENABLE_NLS, 1, ++ [always defined to indicate that i18n is enabled]) ++ fi + +-# Do all the work for Automake. -*- Autoconf -*- ++ dnl Test whether we really found GNU xgettext. ++ if test "$XGETTEXT" != ":"; then ++ dnl If it is not GNU xgettext we define it as : so that the ++ dnl Makefiles still can work. ++ if $XGETTEXT --omit-header /dev/null 2> /dev/null; then ++ : ; ++ else ++ AC_MSG_RESULT( ++ [found xgettext program is not GNU xgettext; ignore it]) ++ XGETTEXT=":" ++ fi ++ fi + +-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +-# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++ # We need to process the po/ directory. ++ POSUB=po + +-# serial 16 ++ AC_OUTPUT_COMMANDS( ++ [case "$CONFIG_FILES" in *po/Makefile.in*) ++ sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile ++ esac]) + +-# This macro actually does too much. Some checks are only needed if +-# your package does certain things. But this isn't really a big deal. ++ dnl These rules are solely for the distribution goal. While doing this ++ dnl we only have to keep exactly one list of the available catalogs ++ dnl in configure.in. ++ for lang in $ALL_LINGUAS; do ++ GMOFILES="$GMOFILES $lang.gmo" ++ POFILES="$POFILES $lang.po" ++ done + +-# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +-# AM_INIT_AUTOMAKE([OPTIONS]) +-# ----------------------------------------------- +-# The call with PACKAGE and VERSION arguments is the old style +-# call (pre autoconf-2.50), which is being phased out. PACKAGE +-# and VERSION should now be passed to AC_INIT and removed from +-# the call to AM_INIT_AUTOMAKE. +-# We support both call styles for the transition. After +-# the next Automake release, Autoconf can make the AC_INIT +-# arguments mandatory, and then we can depend on a new Autoconf +-# release and drop the old call support. +-AC_DEFUN([AM_INIT_AUTOMAKE], +-[AC_PREREQ([2.62])dnl +-dnl Autoconf wants to disallow AM_ names. We explicitly allow +-dnl the ones we care about. +-m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +-AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +-AC_REQUIRE([AC_PROG_INSTALL])dnl +-if test "`cd $srcdir && pwd`" != "`pwd`"; then +- # Use -I$(srcdir) only when $(srcdir) != ., so that make's output +- # is not polluted with repeated "-I." +- AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl +- # test to see if srcdir already configured +- if test -f $srcdir/config.status; then +- AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) +- fi +-fi ++ dnl Make all variables we use known to autoconf. ++ AC_SUBST(CATALOGS) ++ AC_SUBST(CATOBJEXT) ++ AC_SUBST(DATADIRNAME) ++ AC_SUBST(GMOFILES) ++ AC_SUBST(INSTOBJEXT) ++ AC_SUBST(INTLLIBS) ++ AC_SUBST(PO_IN_DATADIR_TRUE) ++ AC_SUBST(PO_IN_DATADIR_FALSE) ++ AC_SUBST(POFILES) ++ AC_SUBST(POSUB) ++ ]) + +-# test whether we have cygpath +-if test -z "$CYGPATH_W"; then +- if (cygpath --version) >/dev/null 2>/dev/null; then +- CYGPATH_W='cygpath -w' +- else +- CYGPATH_W=echo +- fi +-fi +-AC_SUBST([CYGPATH_W]) ++# AM_GLIB_GNU_GETTEXT ++# ------------------- ++# Do checks necessary for use of gettext. If a suitable implementation ++# of gettext is found in either in libintl or in the C library, ++# it will set INTLLIBS to the libraries needed for use of gettext ++# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable ++# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() ++# on various variables needed by the Makefile.in.in installed by ++# glib-gettextize. ++dnl ++glib_DEFUN([GLIB_GNU_GETTEXT], ++ [AC_REQUIRE([AC_PROG_CC])dnl ++ AC_REQUIRE([AC_HEADER_STDC])dnl ++ ++ GLIB_LC_MESSAGES ++ GLIB_WITH_NLS + +-# Define the identity of the package. +-dnl Distinguish between old-style and new-style calls. +-m4_ifval([$2], +-[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl +- AC_SUBST([PACKAGE], [$1])dnl +- AC_SUBST([VERSION], [$2])], +-[_AM_SET_OPTIONS([$1])dnl +-dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +-m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, +- [m4_fatal([AC_INIT should be called with package and version arguments])])dnl +- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl +- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl ++ if test "$gt_cv_have_gettext" = "yes"; then ++ if test "x$ALL_LINGUAS" = "x"; then ++ LINGUAS= ++ else ++ AC_MSG_CHECKING(for catalogs to be installed) ++ NEW_LINGUAS= ++ for presentlang in $ALL_LINGUAS; do ++ useit=no ++ if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then ++ desiredlanguages="$LINGUAS" ++ else ++ desiredlanguages="$ALL_LINGUAS" ++ fi ++ for desiredlang in $desiredlanguages; do ++ # Use the presentlang catalog if desiredlang is ++ # a. equal to presentlang, or ++ # b. a variant of presentlang (because in this case, ++ # presentlang can be used as a fallback for messages ++ # which are not translated in the desiredlang catalog). ++ case "$desiredlang" in ++ "$presentlang"*) useit=yes;; ++ esac ++ done ++ if test $useit = yes; then ++ NEW_LINGUAS="$NEW_LINGUAS $presentlang" ++ fi ++ done ++ LINGUAS=$NEW_LINGUAS ++ AC_MSG_RESULT($LINGUAS) ++ fi + +-_AM_IF_OPTION([no-define],, +-[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) +- AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl ++ dnl Construct list of names of catalog files to be constructed. ++ if test -n "$LINGUAS"; then ++ for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done ++ fi ++ fi ++ ++ dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly ++ dnl find the mkinstalldirs script in another subdir but ($top_srcdir). ++ dnl Try to locate is. ++ MKINSTALLDIRS= ++ if test -n "$ac_aux_dir"; then ++ MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ++ fi ++ if test -z "$MKINSTALLDIRS"; then ++ MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" ++ fi ++ AC_SUBST(MKINSTALLDIRS) + +-# Some tools Automake needs. +-AC_REQUIRE([AM_SANITY_CHECK])dnl +-AC_REQUIRE([AC_ARG_PROGRAM])dnl +-AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) +-AM_MISSING_PROG(AUTOCONF, autoconf) +-AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) +-AM_MISSING_PROG(AUTOHEADER, autoheader) +-AM_MISSING_PROG(MAKEINFO, makeinfo) +-AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +-AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl +-AC_REQUIRE([AM_PROG_MKDIR_P])dnl +-# We need awk for the "check" target. The system "awk" is bad on +-# some platforms. +-AC_REQUIRE([AC_PROG_AWK])dnl +-AC_REQUIRE([AC_PROG_MAKE_SET])dnl +-AC_REQUIRE([AM_SET_LEADING_DOT])dnl +-_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], +- [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], +- [_AM_PROG_TAR([v7])])]) +-_AM_IF_OPTION([no-dependencies],, +-[AC_PROVIDE_IFELSE([AC_PROG_CC], +- [_AM_DEPENDENCIES(CC)], +- [define([AC_PROG_CC], +- defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +-AC_PROVIDE_IFELSE([AC_PROG_CXX], +- [_AM_DEPENDENCIES(CXX)], +- [define([AC_PROG_CXX], +- defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +-AC_PROVIDE_IFELSE([AC_PROG_OBJC], +- [_AM_DEPENDENCIES(OBJC)], +- [define([AC_PROG_OBJC], +- defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl +-]) +-_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl +-dnl The `parallel-tests' driver may need to know about EXEEXT, so add the +-dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro +-dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. +-AC_CONFIG_COMMANDS_PRE(dnl +-[m4_provide_if([_AM_COMPILER_EXEEXT], +- [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl +-]) ++ dnl Generate list of files to be processed by xgettext which will ++ dnl be included in po/Makefile. ++ test -d po || mkdir po ++ if test "x$srcdir" != "x."; then ++ if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then ++ posrcprefix="$srcdir/" ++ else ++ posrcprefix="../$srcdir/" ++ fi ++ else ++ posrcprefix="../" ++ fi ++ rm -f po/POTFILES ++ sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ ++ < $srcdir/po/POTFILES.in > po/POTFILES ++ ]) + +-dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not +-dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further +-dnl mangled by Autoconf and run in a shell conditional statement. +-m4_define([_AC_COMPILER_EXEEXT], +-m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) ++# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) ++# ------------------------------- ++# Define VARIABLE to the location where catalog files will ++# be installed by po/Makefile. ++glib_DEFUN([GLIB_DEFINE_LOCALEDIR], ++[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl ++glib_save_prefix="$prefix" ++glib_save_exec_prefix="$exec_prefix" ++glib_save_datarootdir="$datarootdir" ++test "x$prefix" = xNONE && prefix=$ac_default_prefix ++test "x$exec_prefix" = xNONE && exec_prefix=$prefix ++datarootdir=`eval echo "${datarootdir}"` ++if test "x$CATOBJEXT" = "x.mo" ; then ++ localedir=`eval echo "${libdir}/locale"` ++else ++ localedir=`eval echo "${datadir}/locale"` ++fi ++prefix="$glib_save_prefix" ++exec_prefix="$glib_save_exec_prefix" ++datarootdir="$glib_save_datarootdir" ++AC_DEFINE_UNQUOTED($1, "$localedir", ++ [Define the location where the catalogs will be installed]) ++]) + ++dnl ++dnl Now the definitions that aclocal will find ++dnl ++ifdef(glib_configure_in,[],[ ++AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) ++AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) ++])dnl + +-# When config.status generates a header, we must update the stamp-h file. +-# This file resides in the same directory as the config header +-# that is generated. The stamp files are numbered to have different names. ++# GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) ++# ++# Create a temporary file with TEST-FILE as its contents and pass the ++# file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with ++# 0 and perform ACTION-IF-FAIL for any other exit status. ++AC_DEFUN([GLIB_RUN_PROG], ++[cat >conftest.foo <<_ACEOF ++$2 ++_ACEOF ++if AC_RUN_LOG([$1 conftest.foo]); then ++ m4_ifval([$3], [$3], [:]) ++m4_ifvaln([$4], [else $4])dnl ++echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD ++sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD ++fi]) + +-# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +-# loop where config.status creates the headers, so we can generate +-# our stamp files there. +-AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +-[# Compute $1's index in $config_headers. +-_am_arg=$1 +-_am_stamp_count=1 +-for _am_header in $config_headers :; do +- case $_am_header in +- $_am_arg | $_am_arg:* ) +- break ;; +- * ) +- _am_stamp_count=`expr $_am_stamp_count + 1` ;; +- esac +-done +-echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +-# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++# gnome-common.m4 ++# + +-# AM_PROG_INSTALL_SH +-# ------------------ +-# Define $install_sh. +-AC_DEFUN([AM_PROG_INSTALL_SH], +-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +-if test x"${install_sh}" != xset; then +- case $am_aux_dir in +- *\ * | *\ *) +- install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; +- *) +- install_sh="\${SHELL} $am_aux_dir/install-sh" +- esac +-fi +-AC_SUBST(install_sh)]) ++dnl GNOME_COMMON_INIT + +-# Copyright (C) 2003, 2005 Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++AC_DEFUN([GNOME_COMMON_INIT], ++[ ++ dnl this macro should come after AC_CONFIG_MACRO_DIR ++ AC_BEFORE([AC_CONFIG_MACRO_DIR], [$0]) + +-# serial 2 ++ dnl ensure that when the Automake generated makefile calls aclocal, ++ dnl it honours the $ACLOCAL_FLAGS environment variable ++ ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}" ++ if test -n "$ac_macro_dir"; then ++ ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS" ++ fi + +-# Check whether the underlying file-system supports filenames +-# with a leading dot. For instance MS-DOS doesn't. +-AC_DEFUN([AM_SET_LEADING_DOT], +-[rm -rf .tst 2>/dev/null +-mkdir .tst 2>/dev/null +-if test -d .tst; then +- am__leading_dot=. +-else +- am__leading_dot=_ +-fi +-rmdir .tst 2>/dev/null +-AC_SUBST([am__leading_dot])]) ++ AC_SUBST([ACLOCAL_AMFLAGS]) ++]) + +-# Add --enable-maintainer-mode option to configure. -*- Autoconf -*- +-# From Jim Meyering ++AC_DEFUN([GNOME_DEBUG_CHECK], ++[ ++ AC_ARG_ENABLE([debug], ++ AC_HELP_STRING([--enable-debug], ++ [turn on debugging]),, ++ [enable_debug=no]) + +-# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008 +-# Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++ if test x$enable_debug = xyes ; then ++ AC_DEFINE(GNOME_ENABLE_DEBUG, 1, ++ [Enable additional debugging at the expense of performance and size]) ++ fi ++]) + +-# serial 5 ++dnl GNOME_MAINTAINER_MODE_DEFINES () ++dnl define DISABLE_DEPRECATED ++dnl ++AC_DEFUN([GNOME_MAINTAINER_MODE_DEFINES], ++[ ++ AC_REQUIRE([AM_MAINTAINER_MODE]) + +-# AM_MAINTAINER_MODE([DEFAULT-MODE]) +-# ---------------------------------- +-# Control maintainer-specific portions of Makefiles. +-# Default is to disable them, unless `enable' is passed literally. +-# For symmetry, `disable' may be passed as well. Anyway, the user +-# can override the default with the --enable/--disable switch. +-AC_DEFUN([AM_MAINTAINER_MODE], +-[m4_case(m4_default([$1], [disable]), +- [enable], [m4_define([am_maintainer_other], [disable])], +- [disable], [m4_define([am_maintainer_other], [enable])], +- [m4_define([am_maintainer_other], [enable]) +- m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) +-AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles]) +- dnl maintainer-mode's default is 'disable' unless 'enable' is passed +- AC_ARG_ENABLE([maintainer-mode], +-[ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful +- (and sometimes confusing) to the casual installer], +- [USE_MAINTAINER_MODE=$enableval], +- [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) +- AC_MSG_RESULT([$USE_MAINTAINER_MODE]) +- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) +- MAINT=$MAINTAINER_MODE_TRUE +- AC_SUBST([MAINT])dnl +-] +-) ++ if test $USE_MAINTAINER_MODE = yes; then ++ DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGCONF_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED -DBONOBO_UI_DISABLE_DEPRECATED -DGNOME_VFS_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DLIBGLADE_DISABLE_DEPRECATED -DWNCK_DISABLE_DEPRECATED -DLIBSOUP_DISABLE_DEPRECATED" ++ else ++ DISABLE_DEPRECATED="" ++ fi ++ AC_SUBST(DISABLE_DEPRECATED) ++]) + +-AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) ++dnl GNOME_COMPILE_WARNINGS ++dnl Turn on many useful compiler warnings ++dnl For now, only works on GCC ++AC_DEFUN([GNOME_COMPILE_WARNINGS],[ ++ dnl ****************************** ++ dnl More compiler warnings ++ dnl ****************************** + +-# Check to see how 'make' treats includes. -*- Autoconf -*- ++ AC_ARG_ENABLE(compile-warnings, ++ AC_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@], ++ [Turn on compiler warnings]),, ++ [enable_compile_warnings="m4_default([$1],[yes])"]) + +-# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++ warnCFLAGS= ++ if test "x$GCC" != xyes; then ++ enable_compile_warnings=no ++ fi + +-# serial 4 ++ warning_flags= ++ realsave_CFLAGS="$CFLAGS" + +-# AM_MAKE_INCLUDE() +-# ----------------- +-# Check to see how make treats includes. +-AC_DEFUN([AM_MAKE_INCLUDE], +-[am_make=${MAKE-make} +-cat > confinc << 'END' +-am__doit: +- @echo this is the am__doit target +-.PHONY: am__doit +-END +-# If we don't find an include directive, just comment out the code. +-AC_MSG_CHECKING([for style of include used by $am_make]) +-am__include="#" +-am__quote= +-_am_result=none +-# First try GNU make style include. +-echo "include confinc" > confmf +-# Ignore all kinds of additional output from `make'. +-case `$am_make -s -f confmf 2> /dev/null` in #( +-*the\ am__doit\ target*) +- am__include=include +- am__quote= +- _am_result=GNU +- ;; +-esac +-# Now try BSD make style include. +-if test "$am__include" = "#"; then +- echo '.include "confinc"' > confmf +- case `$am_make -s -f confmf 2> /dev/null` in #( +- *the\ am__doit\ target*) +- am__include=.include +- am__quote="\"" +- _am_result=BSD +- ;; +- esac +-fi +-AC_SUBST([am__include]) +-AC_SUBST([am__quote]) +-AC_MSG_RESULT([$_am_result]) +-rm -f confinc confmf +-]) ++ case "$enable_compile_warnings" in ++ no) ++ warning_flags= ++ ;; ++ minimum) ++ warning_flags="-Wall" ++ ;; ++ yes) ++ warning_flags="-Wall -Wmissing-prototypes" ++ ;; ++ maximum|error) ++ warning_flags="-Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith" ++ CFLAGS="$warning_flags $CFLAGS" ++ for option in -Wno-sign-compare; do ++ SAVE_CFLAGS="$CFLAGS" ++ CFLAGS="$CFLAGS $option" ++ AC_MSG_CHECKING([whether gcc understands $option]) ++ AC_TRY_COMPILE([], [], ++ has_option=yes, ++ has_option=no,) ++ CFLAGS="$SAVE_CFLAGS" ++ AC_MSG_RESULT($has_option) ++ if test $has_option = yes; then ++ warning_flags="$warning_flags $option" ++ fi ++ unset has_option ++ unset SAVE_CFLAGS ++ done ++ unset option ++ if test "$enable_compile_warnings" = "error" ; then ++ warning_flags="$warning_flags -Werror" ++ fi ++ ;; ++ *) ++ AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings) ++ ;; ++ esac ++ CFLAGS="$realsave_CFLAGS" ++ AC_MSG_CHECKING(what warning flags to pass to the C compiler) ++ AC_MSG_RESULT($warning_flags) + +-# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008 +-# Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++ AC_ARG_ENABLE(iso-c, ++ AC_HELP_STRING([--enable-iso-c], ++ [Try to warn if code is not ISO C ]),, ++ [enable_iso_c=no]) + +-# serial 6 ++ AC_MSG_CHECKING(what language compliance flags to pass to the C compiler) ++ complCFLAGS= ++ if test "x$enable_iso_c" != "xno"; then ++ if test "x$GCC" = "xyes"; then ++ case " $CFLAGS " in ++ *[\ \ ]-ansi[\ \ ]*) ;; ++ *) complCFLAGS="$complCFLAGS -ansi" ;; ++ esac ++ case " $CFLAGS " in ++ *[\ \ ]-pedantic[\ \ ]*) ;; ++ *) complCFLAGS="$complCFLAGS -pedantic" ;; ++ esac ++ fi ++ fi ++ AC_MSG_RESULT($complCFLAGS) + +-# AM_PROG_CC_C_O +-# -------------- +-# Like AC_PROG_CC_C_O, but changed for automake. +-AC_DEFUN([AM_PROG_CC_C_O], +-[AC_REQUIRE([AC_PROG_CC_C_O])dnl +-AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +-AC_REQUIRE_AUX_FILE([compile])dnl +-# FIXME: we rely on the cache variable name because +-# there is no other way. +-set dummy $CC +-am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` +-eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o +-if test "$am_t" != yes; then +- # Losing compiler, so override with the script. +- # FIXME: It is wrong to rewrite CC. +- # But if we don't then we get into trouble of one sort or another. +- # A longer-term fix would be to have automake use am__CC in this case, +- # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" +- CC="$am_aux_dir/compile $CC" +-fi +-dnl Make sure AC_PROG_CC is never called again, or it will override our +-dnl setting of CC. +-m4_define([AC_PROG_CC], +- [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) ++ WARN_CFLAGS="$warning_flags $complCFLAGS" ++ AC_SUBST(WARN_CFLAGS) + ]) + +-# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- ++dnl For C++, do basically the same thing. + +-# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 +-# Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++AC_DEFUN([GNOME_CXX_WARNINGS],[ ++ AC_ARG_ENABLE(cxx-warnings, ++ AC_HELP_STRING([--enable-cxx-warnings=@<:@no/minimum/yes@:>@] ++ [Turn on compiler warnings.]),, ++ [enable_cxx_warnings="m4_default([$1],[minimum])"]) + +-# serial 6 ++ AC_MSG_CHECKING(what warning flags to pass to the C++ compiler) ++ warnCXXFLAGS= ++ if test "x$GXX" != xyes; then ++ enable_cxx_warnings=no ++ fi ++ if test "x$enable_cxx_warnings" != "xno"; then ++ if test "x$GXX" = "xyes"; then ++ case " $CXXFLAGS " in ++ *[\ \ ]-Wall[\ \ ]*) ;; ++ *) warnCXXFLAGS="-Wall -Wno-unused" ;; ++ esac + +-# AM_MISSING_PROG(NAME, PROGRAM) +-# ------------------------------ +-AC_DEFUN([AM_MISSING_PROG], +-[AC_REQUIRE([AM_MISSING_HAS_RUN]) +-$1=${$1-"${am_missing_run}$2"} +-AC_SUBST($1)]) ++ ## -W is not all that useful. And it cannot be controlled ++ ## with individual -Wno-xxx flags, unlike -Wall ++ if test "x$enable_cxx_warnings" = "xyes"; then ++ warnCXXFLAGS="$warnCXXFLAGS -Wshadow -Woverloaded-virtual" ++ fi ++ fi ++ fi ++ AC_MSG_RESULT($warnCXXFLAGS) + ++ AC_ARG_ENABLE(iso-cxx, ++ AC_HELP_STRING([--enable-iso-cxx], ++ [Try to warn if code is not ISO C++ ]),, ++ [enable_iso_cxx=no]) + +-# AM_MISSING_HAS_RUN +-# ------------------ +-# Define MISSING if not defined so far and test if it supports --run. +-# If it does, set am_missing_run to use it, otherwise, to nothing. +-AC_DEFUN([AM_MISSING_HAS_RUN], +-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +-AC_REQUIRE_AUX_FILE([missing])dnl +-if test x"${MISSING+set}" != xset; then +- case $am_aux_dir in +- *\ * | *\ *) +- MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; +- *) +- MISSING="\${SHELL} $am_aux_dir/missing" ;; +- esac +-fi +-# Use eval to expand $SHELL +-if eval "$MISSING --run true"; then +- am_missing_run="$MISSING --run " +-else +- am_missing_run= +- AC_MSG_WARN([`missing' script is too old or missing]) +-fi +-]) ++ AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler) ++ complCXXFLAGS= ++ if test "x$enable_iso_cxx" != "xno"; then ++ if test "x$GXX" = "xyes"; then ++ case " $CXXFLAGS " in ++ *[\ \ ]-ansi[\ \ ]*) ;; ++ *) complCXXFLAGS="$complCXXFLAGS -ansi" ;; ++ esac + +-# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++ case " $CXXFLAGS " in ++ *[\ \ ]-pedantic[\ \ ]*) ;; ++ *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;; ++ esac ++ fi ++ fi ++ AC_MSG_RESULT($complCXXFLAGS) + +-# AM_PROG_MKDIR_P +-# --------------- +-# Check for `mkdir -p'. +-AC_DEFUN([AM_PROG_MKDIR_P], +-[AC_PREREQ([2.60])dnl +-AC_REQUIRE([AC_PROG_MKDIR_P])dnl +-dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, +-dnl while keeping a definition of mkdir_p for backward compatibility. +-dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. +-dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of +-dnl Makefile.ins that do not define MKDIR_P, so we do our own +-dnl adjustment using top_builddir (which is defined more often than +-dnl MKDIR_P). +-AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl +-case $mkdir_p in +- [[\\/$]]* | ?:[[\\/]]*) ;; +- */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +-esac ++ WARN_CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS" ++ AC_SUBST(WARN_CXXFLAGS) + ]) + +-# Helper functions for option handling. -*- Autoconf -*- ++# nls.m4 serial 3 (gettext-0.15) ++dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++dnl ++dnl This file can can be used in projects which are not available under ++dnl the GNU General Public License or the GNU Library General Public ++dnl License but which still want to provide support for the GNU gettext ++dnl functionality. ++dnl Please note that the actual code of the GNU gettext library is covered ++dnl by the GNU Library General Public License, and the rest of the GNU ++dnl gettext package package is covered by the GNU General Public License. ++dnl They are *not* in the public domain. + +-# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++dnl Authors: ++dnl Ulrich Drepper , 1995-2000. ++dnl Bruno Haible , 2000-2003. + +-# serial 4 ++AC_PREREQ(2.50) + +-# _AM_MANGLE_OPTION(NAME) +-# ----------------------- +-AC_DEFUN([_AM_MANGLE_OPTION], +-[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) ++AC_DEFUN([AM_NLS], ++[ ++ AC_MSG_CHECKING([whether NLS is requested]) ++ dnl Default is enabled NLS ++ AC_ARG_ENABLE(nls, ++ [ --disable-nls do not use Native Language Support], ++ USE_NLS=$enableval, USE_NLS=yes) ++ AC_MSG_RESULT($USE_NLS) ++ AC_SUBST(USE_NLS) ++]) + +-# _AM_SET_OPTION(NAME) +-# ------------------------------ +-# Set option NAME. Presently that only means defining a flag for this option. +-AC_DEFUN([_AM_SET_OPTION], +-[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) ++# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- ++# ++# Copyright © 2004 Scott James Remnant . ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, but ++# WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++# General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ++# ++# As a special exception to the GNU General Public License, if you ++# distribute this file as part of a program that contains a ++# configuration script generated by Autoconf, you may include it under ++# the same distribution terms that you use for the rest of that program. + +-# _AM_SET_OPTIONS(OPTIONS) ++# PKG_PROG_PKG_CONFIG([MIN-VERSION]) + # ---------------------------------- +-# OPTIONS is a space-separated list of Automake options. +-AC_DEFUN([_AM_SET_OPTIONS], +-[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) ++AC_DEFUN([PKG_PROG_PKG_CONFIG], ++[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) ++m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) ++AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl ++if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then ++ AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) ++fi ++if test -n "$PKG_CONFIG"; then ++ _pkg_min_version=m4_default([$1], [0.9.0]) ++ AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) ++ if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then ++ AC_MSG_RESULT([yes]) ++ else ++ AC_MSG_RESULT([no]) ++ PKG_CONFIG="" ++ fi ++ ++fi[]dnl ++])# PKG_PROG_PKG_CONFIG + +-# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +-# ------------------------------------------- +-# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +-AC_DEFUN([_AM_IF_OPTION], +-[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) ++# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) ++# ++# Check to see whether a particular set of modules exists. Similar ++# to PKG_CHECK_MODULES(), but does not set variables or print errors. ++# ++# ++# Similar to PKG_CHECK_MODULES, make sure that the first instance of ++# this or PKG_CHECK_MODULES is called, or make sure to call ++# PKG_CHECK_EXISTS manually ++# -------------------------------------------------------------- ++AC_DEFUN([PKG_CHECK_EXISTS], ++[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl ++if test -n "$PKG_CONFIG" && \ ++ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then ++ m4_ifval([$2], [$2], [:]) ++m4_ifvaln([$3], [else ++ $3])dnl ++fi]) + +-# Check to make sure that the build environment is sane. -*- Autoconf -*- + +-# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 +-# Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) ++# --------------------------------------------- ++m4_define([_PKG_CONFIG], ++[if test -n "$PKG_CONFIG"; then ++ if test -n "$$1"; then ++ pkg_cv_[]$1="$$1" ++ else ++ PKG_CHECK_EXISTS([$3], ++ [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], ++ [pkg_failed=yes]) ++ fi ++else ++ pkg_failed=untried ++fi[]dnl ++])# _PKG_CONFIG + +-# serial 5 ++# _PKG_SHORT_ERRORS_SUPPORTED ++# ----------------------------- ++AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], ++[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) ++if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then ++ _pkg_short_errors_supported=yes ++else ++ _pkg_short_errors_supported=no ++fi[]dnl ++])# _PKG_SHORT_ERRORS_SUPPORTED + +-# AM_SANITY_CHECK +-# --------------- +-AC_DEFUN([AM_SANITY_CHECK], +-[AC_MSG_CHECKING([whether build environment is sane]) +-# Just in case +-sleep 1 +-echo timestamp > conftest.file +-# Reject unsafe characters in $srcdir or the absolute working directory +-# name. Accept space and tab only in the latter. +-am_lf=' +-' +-case `pwd` in +- *[[\\\"\#\$\&\'\`$am_lf]]*) +- AC_MSG_ERROR([unsafe absolute working directory name]);; +-esac +-case $srcdir in +- *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) +- AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; +-esac + +-# Do `set' in a subshell so we don't clobber the current shell's +-# arguments. Must try -L first in case configure is actually a +-# symlink; some systems play weird games with the mod time of symlinks +-# (eg FreeBSD returns the mod time of the symlink's containing +-# directory). +-if ( +- set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` +- if test "$[*]" = "X"; then +- # -L didn't work. +- set X `ls -t "$srcdir/configure" conftest.file` +- fi +- rm -f conftest.file +- if test "$[*]" != "X $srcdir/configure conftest.file" \ +- && test "$[*]" != "X conftest.file $srcdir/configure"; then ++# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], ++# [ACTION-IF-NOT-FOUND]) ++# ++# ++# Note that if there is a possibility the first call to ++# PKG_CHECK_MODULES might not happen, you should be sure to include an ++# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac ++# ++# ++# -------------------------------------------------------------- ++AC_DEFUN([PKG_CHECK_MODULES], ++[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl ++AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl ++AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +- # If neither matched, then we have a broken ls. This can happen +- # if, for instance, CONFIG_SHELL is bash and it inherits a +- # broken ls alias from the environment. This has actually +- # happened. Such a system could not be considered "sane". +- AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken +-alias in your environment]) +- fi ++pkg_failed=no ++AC_MSG_CHECKING([for $1]) + +- test "$[2]" = conftest.file +- ) +-then +- # Ok. +- : +-else +- AC_MSG_ERROR([newly created file is older than distributed files! +-Check your system clock]) +-fi +-AC_MSG_RESULT(yes)]) ++_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) ++_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +-# Copyright (C) 2009 Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS ++and $1[]_LIBS to avoid the need to call pkg-config. ++See the pkg-config man page for more details.]) + +-# serial 1 ++if test $pkg_failed = yes; then ++ _PKG_SHORT_ERRORS_SUPPORTED ++ if test $_pkg_short_errors_supported = yes; then ++ $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` ++ else ++ $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD + +-# AM_SILENT_RULES([DEFAULT]) +-# -------------------------- +-# Enable less verbose build rules; with the default set to DEFAULT +-# (`yes' being less verbose, `no' or empty being verbose). +-AC_DEFUN([AM_SILENT_RULES], +-[AC_ARG_ENABLE([silent-rules], +-[ --enable-silent-rules less verbose build output (undo: `make V=1') +- --disable-silent-rules verbose build output (undo: `make V=0')]) +-case $enable_silent_rules in +-yes) AM_DEFAULT_VERBOSITY=0;; +-no) AM_DEFAULT_VERBOSITY=1;; +-*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; +-esac +-AC_SUBST([AM_DEFAULT_VERBOSITY])dnl +-AM_BACKSLASH='\' +-AC_SUBST([AM_BACKSLASH])dnl +-_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl +-]) ++ ifelse([$4], , [AC_MSG_ERROR(dnl ++[Package requirements ($2) were not met: + +-# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +-# +-# This file is free software; the Free Software Foundation +-# gives unlimited permission to copy and/or distribute it, +-# with or without modifications, as long as this notice is preserved. ++$$1_PKG_ERRORS + +-# AM_PROG_INSTALL_STRIP +-# --------------------- +-# One issue with vendor `install' (even GNU) is that you can't +-# specify the program used to strip binaries. This is especially +-# annoying in cross-compiling environments, where the build's strip +-# is unlikely to handle the host's binaries. +-# Fortunately install-sh will honor a STRIPPROG variable, so we +-# always use install-sh in `make install-strip', and initialize +-# STRIPPROG with the value of the STRIP variable (set by the user). +-AC_DEFUN([AM_PROG_INSTALL_STRIP], +-[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +-# Installed binaries are usually stripped using `strip' when the user +-# run `make install-strip'. However `strip' might not be the right +-# tool to use in cross-compilation environments, therefore Automake +-# will honor the `STRIP' environment variable to overrule this program. +-dnl Don't test for $cross_compiling = yes, because it might be `maybe'. +-if test "$cross_compiling" != no; then +- AC_CHECK_TOOL([STRIP], [strip], :) +-fi +-INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +-AC_SUBST([INSTALL_STRIP_PROGRAM])]) ++Consider adjusting the PKG_CONFIG_PATH environment variable if you ++installed software in a non-standard prefix. + +-# Copyright (C) 2006, 2008 Free Software Foundation, Inc. ++_PKG_TEXT ++])], ++ [AC_MSG_RESULT([no]) ++ $4]) ++elif test $pkg_failed = untried; then ++ ifelse([$4], , [AC_MSG_FAILURE(dnl ++[The pkg-config script could not be found or is too old. Make sure it ++is in your PATH or set the PKG_CONFIG environment variable to the full ++path to pkg-config. ++ ++_PKG_TEXT ++ ++To get pkg-config, see .])], ++ [$4]) ++else ++ $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS ++ $1[]_LIBS=$pkg_cv_[]$1[]_LIBS ++ AC_MSG_RESULT([yes]) ++ ifelse([$3], , :, [$3]) ++fi[]dnl ++])# PKG_CHECK_MODULES ++ ++# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. + +-# serial 2 ++# AM_AUTOMAKE_VERSION(VERSION) ++# ---------------------------- ++# Automake X.Y traces this macro to ensure aclocal.m4 has been ++# generated from the m4 files accompanying Automake X.Y. ++# (This private macro should not be called outside this file.) ++AC_DEFUN([AM_AUTOMAKE_VERSION], ++[am__api_version='1.11' ++dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to ++dnl require some minimum version. Point them to the right macro. ++m4_if([$1], [1.11], [], ++ [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ++]) + +-# _AM_SUBST_NOTMAKE(VARIABLE) +-# --------------------------- +-# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. +-# This macro is traced by Automake. +-AC_DEFUN([_AM_SUBST_NOTMAKE]) ++# _AM_AUTOCONF_VERSION(VERSION) ++# ----------------------------- ++# aclocal traces this macro to find the Autoconf version. ++# This is a private macro too. Using m4_define simplifies ++# the logic in aclocal, which can simply ignore this definition. ++m4_define([_AM_AUTOCONF_VERSION], []) + +-# AM_SUBST_NOTMAKE(VARIABLE) +-# --------------------------- +-# Public sister of _AM_SUBST_NOTMAKE. +-AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) ++# AM_SET_CURRENT_AUTOMAKE_VERSION ++# ------------------------------- ++# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. ++# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. ++AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], ++[AM_AUTOMAKE_VERSION([1.11])dnl ++m4_ifndef([AC_AUTOCONF_VERSION], ++ [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl ++_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) + +-# Check how to create a tarball. -*- Autoconf -*- ++# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +-# Copyright (C) 2004, 2005 Free Software Foundation, Inc. ++# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. + +-# serial 2 +- +-# _AM_PROG_TAR(FORMAT) +-# -------------------- +-# Check how to create a tarball in format FORMAT. +-# FORMAT should be one of `v7', `ustar', or `pax'. ++# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets ++# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to ++# `$srcdir', `$srcdir/..', or `$srcdir/../..'. + # +-# Substitute a variable $(am__tar) that is a command +-# writing to stdout a FORMAT-tarball containing the directory +-# $tardir. +-# tardir=directory && $(am__tar) > result.tar ++# Of course, Automake must honor this variable whenever it calls a ++# tool from the auxiliary directory. The problem is that $srcdir (and ++# therefore $ac_aux_dir as well) can be either absolute or relative, ++# depending on how configure is run. This is pretty annoying, since ++# it makes $ac_aux_dir quite unusable in subdirectories: in the top ++# source directory, any form will work fine, but in subdirectories a ++# relative path needs to be adjusted first. + # +-# Substitute a variable $(am__untar) that extract such +-# a tarball read from stdin. +-# $(am__untar) < result.tar +-AC_DEFUN([_AM_PROG_TAR], +-[# Always define AMTAR for backward compatibility. +-AM_MISSING_PROG([AMTAR], [tar]) +-m4_if([$1], [v7], +- [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], +- [m4_case([$1], [ustar],, [pax],, +- [m4_fatal([Unknown tar format])]) +-AC_MSG_CHECKING([how to create a $1 tar archive]) +-# Loop over all known methods to create a tar archive until one works. +-_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' +-_am_tools=${am_cv_prog_tar_$1-$_am_tools} +-# Do not fold the above two line into one, because Tru64 sh and +-# Solaris sh will not grok spaces in the rhs of `-'. +-for _am_tool in $_am_tools +-do +- case $_am_tool in +- gnutar) +- for _am_tar in tar gnutar gtar; +- do +- AM_RUN_LOG([$_am_tar --version]) && break +- done +- am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' +- am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' +- am__untar="$_am_tar -xf -" +- ;; +- plaintar) +- # Must skip GNU tar: if it does not support --format= it doesn't create +- # ustar tarball either. +- (tar --version) >/dev/null 2>&1 && continue +- am__tar='tar chf - "$$tardir"' +- am__tar_='tar chf - "$tardir"' +- am__untar='tar xf -' +- ;; +- pax) +- am__tar='pax -L -x $1 -w "$$tardir"' +- am__tar_='pax -L -x $1 -w "$tardir"' +- am__untar='pax -r' +- ;; +- cpio) +- am__tar='find "$$tardir" -print | cpio -o -H $1 -L' +- am__tar_='find "$tardir" -print | cpio -o -H $1 -L' +- am__untar='cpio -i -H $1 -d' +- ;; +- none) +- am__tar=false +- am__tar_=false +- am__untar=false +- ;; +- esac +- +- # If the value was cached, stop now. We just wanted to have am__tar +- # and am__untar set. +- test -n "${am_cv_prog_tar_$1}" && break +- +- # tar/untar a dummy directory, and stop if the command works +- rm -rf conftest.dir +- mkdir conftest.dir +- echo GrepMe > conftest.dir/file +- AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) +- rm -rf conftest.dir +- if test -s conftest.tar; then +- AM_RUN_LOG([$am__untar /dev/null 2>&1 && break +- fi +-done +-rm -rf conftest.dir ++# $ac_aux_dir/missing ++# fails when called from a subdirectory if $ac_aux_dir is relative ++# $top_srcdir/$ac_aux_dir/missing ++# fails if $ac_aux_dir is absolute, ++# fails when called from a subdirectory in a VPATH build with ++# a relative $ac_aux_dir ++# ++# The reason of the latter failure is that $top_srcdir and $ac_aux_dir ++# are both prefixed by $srcdir. In an in-source build this is usually ++# harmless because $srcdir is `.', but things will broke when you ++# start a VPATH build or use an absolute $srcdir. ++# ++# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, ++# iff we strip the leading $srcdir from $ac_aux_dir. That would be: ++# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` ++# and then we would define $MISSING as ++# MISSING="\${SHELL} $am_aux_dir/missing" ++# This will work as long as MISSING is not called from configure, because ++# unfortunately $(top_srcdir) has no meaning in configure. ++# However there are other variables, like CC, which are often used in ++# configure, and could therefore not use this "fixed" $ac_aux_dir. ++# ++# Another solution, used here, is to always expand $ac_aux_dir to an ++# absolute PATH. The drawback is that using absolute paths prevent a ++# configured tree to be moved without reconfiguration. + +-AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) +-AC_MSG_RESULT([$am_cv_prog_tar_$1])]) +-AC_SUBST([am__tar]) +-AC_SUBST([am__untar]) +-]) # _AM_PROG_TAR ++AC_DEFUN([AM_AUX_DIR_EXPAND], ++[dnl Rely on autoconf to set up CDPATH properly. ++AC_PREREQ([2.50])dnl ++# expand $ac_aux_dir to an absolute path ++am_aux_dir=`cd $ac_aux_dir && pwd` ++]) + +-dnl AM_GCONF_SOURCE_2 +-dnl Defines GCONF_SCHEMA_CONFIG_SOURCE which is where you should install schemas +-dnl (i.e. pass to gconftool-2 +-dnl Defines GCONF_SCHEMA_FILE_DIR which is a filesystem directory where +-dnl you should install foo.schemas files +-dnl ++# AM_CONDITIONAL -*- Autoconf -*- + +-AC_DEFUN([AM_GCONF_SOURCE_2], +-[ +- if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then +- GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source` +- else +- GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE +- fi ++# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- AC_ARG_WITH([gconf-source], +- AC_HELP_STRING([--with-gconf-source=sourceaddress], +- [Config database for installing schema files.]), +- [GCONF_SCHEMA_CONFIG_SOURCE="$withval"],) ++# serial 9 + +- AC_SUBST(GCONF_SCHEMA_CONFIG_SOURCE) +- AC_MSG_RESULT([Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation]) ++# AM_CONDITIONAL(NAME, SHELL-CONDITION) ++# ------------------------------------- ++# Define a conditional. ++AC_DEFUN([AM_CONDITIONAL], ++[AC_PREREQ(2.52)dnl ++ ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], ++ [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl ++AC_SUBST([$1_TRUE])dnl ++AC_SUBST([$1_FALSE])dnl ++_AM_SUBST_NOTMAKE([$1_TRUE])dnl ++_AM_SUBST_NOTMAKE([$1_FALSE])dnl ++m4_define([_AM_COND_VALUE_$1], [$2])dnl ++if $2; then ++ $1_TRUE= ++ $1_FALSE='#' ++else ++ $1_TRUE='#' ++ $1_FALSE= ++fi ++AC_CONFIG_COMMANDS_PRE( ++[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then ++ AC_MSG_ERROR([[conditional "$1" was never defined. ++Usually this means the macro was only invoked conditionally.]]) ++fi])]) + +- if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then +- GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas' +- fi ++# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- AC_ARG_WITH([gconf-schema-file-dir], +- AC_HELP_STRING([--with-gconf-schema-file-dir=dir], +- [Directory for installing schema files.]), +- [GCONF_SCHEMA_FILE_DIR="$withval"],) ++# serial 10 + +- AC_SUBST(GCONF_SCHEMA_FILE_DIR) +- AC_MSG_RESULT([Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files]) ++# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be ++# written in clear, in which case automake, when reading aclocal.m4, ++# will think it sees a *use*, and therefore will trigger all it's ++# C support machinery. Also note that it means that autoscan, seeing ++# CC etc. in the Makefile, will ask for an AC_PROG_CC use... + +- AC_ARG_ENABLE(schemas-install, +- [ --disable-schemas-install Disable the schemas installation], +- [case ${enableval} in +- yes|no) ;; +- *) AC_MSG_ERROR(bad value ${enableval} for --enable-schemas-install) ;; +- esac]) +- AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no]) +-]) + +-# Copyright (C) 1995-2002 Free Software Foundation, Inc. +-# Copyright (C) 2001-2003,2004 Red Hat, Inc. +-# +-# This file is free software, distributed under the terms of the GNU +-# General Public License. As a special exception to the GNU General +-# Public License, this file may be distributed as part of a program +-# that contains a configuration script generated by Autoconf, under +-# the same distribution terms as the rest of that program. +-# +-# This file can be copied and used freely without restrictions. It can +-# be used in projects which are not available under the GNU Public License +-# but which still want to provide support for the GNU gettext functionality. +-# +-# Macro to add for using GNU gettext. +-# Ulrich Drepper , 1995, 1996 +-# +-# Modified to never use included libintl. +-# Owen Taylor , 12/15/1998 +-# +-# Major rework to remove unused code +-# Owen Taylor , 12/11/2002 +-# +-# Added better handling of ALL_LINGUAS from GNU gettext version +-# written by Bruno Haible, Owen Taylor 5/30/3002 +-# +-# Modified to require ngettext +-# Matthias Clasen 08/06/2004 ++# _AM_DEPENDENCIES(NAME) ++# ---------------------- ++# See how the compiler implements dependency checking. ++# NAME is "CC", "CXX", "GCJ", or "OBJC". ++# We try a few techniques and use that to set a single cache variable. + # +-# We need this here as well, since someone might use autoconf-2.5x +-# to configure GLib then an older version to configure a package +-# using AM_GLIB_GNU_GETTEXT +-AC_PREREQ(2.53) ++# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was ++# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular ++# dependency, and given that the user is not expected to run this macro, ++# just rely on AC_PROG_CC. ++AC_DEFUN([_AM_DEPENDENCIES], ++[AC_REQUIRE([AM_SET_DEPDIR])dnl ++AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl ++AC_REQUIRE([AM_MAKE_INCLUDE])dnl ++AC_REQUIRE([AM_DEP_TRACK])dnl + +-dnl +-dnl We go to great lengths to make sure that aclocal won't +-dnl try to pull in the installed version of these macros +-dnl when running aclocal in the glib directory. +-dnl +-m4_copy([AC_DEFUN],[glib_DEFUN]) +-m4_copy([AC_REQUIRE],[glib_REQUIRE]) +-dnl +-dnl At the end, if we're not within glib, we'll define the public +-dnl definitions in terms of our private definitions. +-dnl ++ifelse([$1], CC, [depcc="$CC" am_compiler_list=], ++ [$1], CXX, [depcc="$CXX" am_compiler_list=], ++ [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], ++ [$1], UPC, [depcc="$UPC" am_compiler_list=], ++ [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], ++ [depcc="$$1" am_compiler_list=]) + +-# GLIB_LC_MESSAGES +-#-------------------- +-glib_DEFUN([GLIB_LC_MESSAGES], +- [AC_CHECK_HEADERS([locale.h]) +- if test $ac_cv_header_locale_h = yes; then +- AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, +- [AC_TRY_LINK([#include ], [return LC_MESSAGES], +- am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) +- if test $am_cv_val_LC_MESSAGES = yes; then +- AC_DEFINE(HAVE_LC_MESSAGES, 1, +- [Define if your file defines LC_MESSAGES.]) +- fi +- fi]) ++AC_CACHE_CHECK([dependency style of $depcc], ++ [am_cv_$1_dependencies_compiler_type], ++[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then ++ # We make a subdir and do the tests there. Otherwise we can end up ++ # making bogus files that we don't know about and never remove. For ++ # instance it was reported that on HP-UX the gcc test will end up ++ # making a dummy file named `D' -- because `-MD' means `put the output ++ # in D'. ++ mkdir conftest.dir ++ # Copy depcomp to subdir because otherwise we won't find it if we're ++ # using a relative directory. ++ cp "$am_depcomp" conftest.dir ++ cd conftest.dir ++ # We will build objects and dependencies in a subdirectory because ++ # it helps to detect inapplicable dependency modes. For instance ++ # both Tru64's cc and ICC support -MD to output dependencies as a ++ # side effect of compilation, but ICC will put the dependencies in ++ # the current directory while Tru64 will put them in the object ++ # directory. ++ mkdir sub + +-# GLIB_PATH_PROG_WITH_TEST +-#---------------------------- +-dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, +-dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) +-glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], +-[# Extract the first word of "$2", so it can be a program name with args. +-set dummy $2; ac_word=[$]2 +-AC_MSG_CHECKING([for $ac_word]) +-AC_CACHE_VAL(ac_cv_path_$1, +-[case "[$]$1" in +- /*) +- ac_cv_path_$1="[$]$1" # Let the user override the test with a path. +- ;; +- *) +- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" +- for ac_dir in ifelse([$5], , $PATH, [$5]); do +- test -z "$ac_dir" && ac_dir=. +- if test -f $ac_dir/$ac_word; then +- if [$3]; then +- ac_cv_path_$1="$ac_dir/$ac_word" ++ am_cv_$1_dependencies_compiler_type=none ++ if test "$am_compiler_list" = ""; then ++ am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` ++ fi ++ am__universal=false ++ m4_case([$1], [CC], ++ [case " $depcc " in #( ++ *\ -arch\ *\ -arch\ *) am__universal=true ;; ++ esac], ++ [CXX], ++ [case " $depcc " in #( ++ *\ -arch\ *\ -arch\ *) am__universal=true ;; ++ esac]) ++ ++ for depmode in $am_compiler_list; do ++ # Setup a source with many dependencies, because some compilers ++ # like to wrap large dependency lists on column 80 (with \), and ++ # we should not choose a depcomp mode which is confused by this. ++ # ++ # We need to recreate these files for each test, as the compiler may ++ # overwrite some of them when testing with obscure command lines. ++ # This happens at least with the AIX C compiler. ++ : > sub/conftest.c ++ for i in 1 2 3 4 5 6; do ++ echo '#include "conftst'$i'.h"' >> sub/conftest.c ++ # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with ++ # Solaris 8's {/usr,}/bin/sh. ++ touch sub/conftst$i.h ++ done ++ echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf ++ ++ # We check with `-c' and `-o' for the sake of the "dashmstdout" ++ # mode. It turns out that the SunPro C++ compiler does not properly ++ # handle `-M -o', and we need to detect this. Also, some Intel ++ # versions had trouble with output in subdirs ++ am__obj=sub/conftest.${OBJEXT-o} ++ am__minus_obj="-o $am__obj" ++ case $depmode in ++ gcc) ++ # This depmode causes a compiler race in universal mode. ++ test "$am__universal" = false || continue ++ ;; ++ nosideeffect) ++ # after this tag, mechanisms are not by side-effect, so they'll ++ # only be used when explicitly requested ++ if test "x$enable_dependency_tracking" = xyes; then ++ continue ++ else + break + fi ++ ;; ++ msvisualcpp | msvcmsys) ++ # This compiler won't grok `-c -o', but also, the minuso test has ++ # not run yet. These depmodes are late enough in the game, and ++ # so weak that their functioning should not be impacted. ++ am__obj=conftest.${OBJEXT-o} ++ am__minus_obj= ++ ;; ++ none) break ;; ++ esac ++ if depmode=$depmode \ ++ source=sub/conftest.c object=$am__obj \ ++ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ ++ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ ++ >/dev/null 2>conftest.err && ++ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && ++ grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && ++ grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ++ ${MAKE-make} -s -f confmf > /dev/null 2>&1; then ++ # icc doesn't choke on unknown options, it will just issue warnings ++ # or remarks (even with -Werror). So we grep stderr for any message ++ # that says an option was ignored or not supported. ++ # When given -MP, icc 7.0 and 7.1 complain thusly: ++ # icc: Command line warning: ignoring option '-M'; no argument required ++ # The diagnosis changed in icc 8.0: ++ # icc: Command line remark: option '-MP' not supported ++ if (grep 'ignoring option' conftest.err || ++ grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else ++ am_cv_$1_dependencies_compiler_type=$depmode ++ break ++ fi + fi + done +- IFS="$ac_save_ifs" +-dnl If no 4th arg is given, leave the cache variable unset, +-dnl so AC_PATH_PROGS will keep looking. +-ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" +-])dnl +- ;; +-esac])dnl +-$1="$ac_cv_path_$1" +-if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then +- AC_MSG_RESULT([$]$1) ++ ++ cd .. ++ rm -rf conftest.dir + else +- AC_MSG_RESULT(no) ++ am_cv_$1_dependencies_compiler_type=none + fi +-AC_SUBST($1)dnl + ]) ++AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) ++AM_CONDITIONAL([am__fastdep$1], [ ++ test "x$enable_dependency_tracking" != xno \ ++ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ++]) ++ ++ ++# AM_SET_DEPDIR ++# ------------- ++# Choose a directory name for dependency files. ++# This macro is AC_REQUIREd in _AM_DEPENDENCIES ++AC_DEFUN([AM_SET_DEPDIR], ++[AC_REQUIRE([AM_SET_LEADING_DOT])dnl ++AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ++]) ++ ++ ++# AM_DEP_TRACK ++# ------------ ++AC_DEFUN([AM_DEP_TRACK], ++[AC_ARG_ENABLE(dependency-tracking, ++[ --disable-dependency-tracking speeds up one-time build ++ --enable-dependency-tracking do not reject slow dependency extractors]) ++if test "x$enable_dependency_tracking" != xno; then ++ am_depcomp="$ac_aux_dir/depcomp" ++ AMDEPBACKSLASH='\' ++fi ++AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) ++AC_SUBST([AMDEPBACKSLASH])dnl ++_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ++]) ++ ++# Generate code to set up dependency tracking. -*- Autoconf -*- + +-# GLIB_WITH_NLS +-#----------------- +-glib_DEFUN([GLIB_WITH_NLS], +- dnl NLS is obligatory +- [USE_NLS=yes +- AC_SUBST(USE_NLS) ++# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- gt_cv_have_gettext=no ++#serial 5 + +- CATOBJEXT=NONE +- XGETTEXT=: +- INTLLIBS= ++# _AM_OUTPUT_DEPENDENCY_COMMANDS ++# ------------------------------ ++AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], ++[{ ++ # Autoconf 2.62 quotes --file arguments for eval, but not when files ++ # are listed without --file. Let's play safe and only enable the eval ++ # if we detect the quoting. ++ case $CONFIG_FILES in ++ *\'*) eval set x "$CONFIG_FILES" ;; ++ *) set x $CONFIG_FILES ;; ++ esac ++ shift ++ for mf ++ do ++ # Strip MF so we end up with the name of the file. ++ mf=`echo "$mf" | sed -e 's/:.*$//'` ++ # Check whether this is an Automake generated Makefile or not. ++ # We used to match only the files named `Makefile.in', but ++ # some people rename them; so instead we look at the file content. ++ # Grep'ing the first line is not enough: some people post-process ++ # each Makefile.in and add a new line on top of each file to say so. ++ # Grep'ing the whole file is not good either: AIX grep has a line ++ # limit of 2048, but all sed's we know have understand at least 4000. ++ if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then ++ dirpart=`AS_DIRNAME("$mf")` ++ else ++ continue ++ fi ++ # Extract the definition of DEPDIR, am__include, and am__quote ++ # from the Makefile without running `make'. ++ DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` ++ test -z "$DEPDIR" && continue ++ am__include=`sed -n 's/^am__include = //p' < "$mf"` ++ test -z "am__include" && continue ++ am__quote=`sed -n 's/^am__quote = //p' < "$mf"` ++ # When using ansi2knr, U may be empty or an underscore; expand it ++ U=`sed -n 's/^U = //p' < "$mf"` ++ # Find all dependency output files, they are included files with ++ # $(DEPDIR) in their names. We invoke sed twice because it is the ++ # simplest approach to changing $(DEPDIR) to its actual value in the ++ # expansion. ++ for file in `sed -n " ++ s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ ++ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do ++ # Make sure the directory exists. ++ test -f "$dirpart/$file" && continue ++ fdir=`AS_DIRNAME(["$file"])` ++ AS_MKDIR_P([$dirpart/$fdir]) ++ # echo "creating $dirpart/$file" ++ echo '# dummy' > "$dirpart/$file" ++ done ++ done ++} ++])# _AM_OUTPUT_DEPENDENCY_COMMANDS + +- AC_CHECK_HEADER(libintl.h, +- [gt_cv_func_dgettext_libintl="no" +- libintl_extra_libs="" + +- # +- # First check in libc +- # +- AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, +- [AC_TRY_LINK([ +-#include +-], +- [return !ngettext ("","", 1)], +- gt_cv_func_ngettext_libc=yes, +- gt_cv_func_ngettext_libc=no) +- ]) +- +- if test "$gt_cv_func_ngettext_libc" = "yes" ; then +- AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, +- [AC_TRY_LINK([ +-#include +-], +- [return !dgettext ("","")], +- gt_cv_func_dgettext_libc=yes, +- gt_cv_func_dgettext_libc=no) +- ]) +- fi +- +- if test "$gt_cv_func_ngettext_libc" = "yes" ; then +- AC_CHECK_FUNCS(bind_textdomain_codeset) +- fi ++# AM_OUTPUT_DEPENDENCY_COMMANDS ++# ----------------------------- ++# This macro should only be invoked once -- use via AC_REQUIRE. ++# ++# This code is only required when automatic dependency tracking ++# is enabled. FIXME. This creates each `.P' file that we will ++# need in order to bootstrap the dependency handling code. ++AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], ++[AC_CONFIG_COMMANDS([depfiles], ++ [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], ++ [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ++]) + +- # +- # If we don't have everything we want, check in libintl +- # +- if test "$gt_cv_func_dgettext_libc" != "yes" \ +- || test "$gt_cv_func_ngettext_libc" != "yes" \ +- || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then +- +- AC_CHECK_LIB(intl, bindtextdomain, +- [AC_CHECK_LIB(intl, ngettext, +- [AC_CHECK_LIB(intl, dgettext, +- gt_cv_func_dgettext_libintl=yes)])]) ++# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- if test "$gt_cv_func_dgettext_libintl" != "yes" ; then +- AC_MSG_CHECKING([if -liconv is needed to use gettext]) +- AC_MSG_RESULT([]) +- AC_CHECK_LIB(intl, ngettext, +- [AC_CHECK_LIB(intl, dcgettext, +- [gt_cv_func_dgettext_libintl=yes +- libintl_extra_libs=-liconv], +- :,-liconv)], +- :,-liconv) +- fi ++# serial 8 + +- # +- # If we found libintl, then check in it for bind_textdomain_codeset(); +- # we'll prefer libc if neither have bind_textdomain_codeset(), +- # and both have dgettext and ngettext +- # +- if test "$gt_cv_func_dgettext_libintl" = "yes" ; then +- glib_save_LIBS="$LIBS" +- LIBS="$LIBS -lintl $libintl_extra_libs" +- unset ac_cv_func_bind_textdomain_codeset +- AC_CHECK_FUNCS(bind_textdomain_codeset) +- LIBS="$glib_save_LIBS" ++# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. ++AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) + +- if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then +- gt_cv_func_dgettext_libc=no +- else +- if test "$gt_cv_func_dgettext_libc" = "yes" \ +- && test "$gt_cv_func_ngettext_libc" = "yes"; then +- gt_cv_func_dgettext_libintl=no +- fi +- fi +- fi +- fi ++# Do all the work for Automake. -*- Autoconf -*- + +- if test "$gt_cv_func_dgettext_libc" = "yes" \ +- || test "$gt_cv_func_dgettext_libintl" = "yes"; then +- gt_cv_have_gettext=yes +- fi +- +- if test "$gt_cv_func_dgettext_libintl" = "yes"; then +- INTLLIBS="-lintl $libintl_extra_libs" +- fi +- +- if test "$gt_cv_have_gettext" = "yes"; then +- AC_DEFINE(HAVE_GETTEXT,1, +- [Define if the GNU gettext() function is already present or preinstalled.]) +- GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, +- [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl +- if test "$MSGFMT" != "no"; then +- glib_save_LIBS="$LIBS" +- LIBS="$LIBS $INTLLIBS" +- AC_CHECK_FUNCS(dcgettext) +- MSGFMT_OPTS= +- AC_MSG_CHECKING([if msgfmt accepts -c]) +- GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ +-msgid "" +-msgstr "" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Project-Id-Version: test 1.0\n" +-"PO-Revision-Date: 2007-02-15 12:01+0100\n" +-"Last-Translator: test \n" +-"Language-Team: C \n" +-"MIME-Version: 1.0\n" +-"Content-Transfer-Encoding: 8bit\n" +-], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) +- AC_SUBST(MSGFMT_OPTS) +- AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) +- GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, +- [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) +- AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; +- return _nl_msg_cat_cntr], +- [CATOBJEXT=.gmo +- DATADIRNAME=share], +- [case $host in +- *-*-solaris*) +- dnl On Solaris, if bind_textdomain_codeset is in libc, +- dnl GNU format message catalog is always supported, +- dnl since both are added to the libc all together. +- dnl Hence, we'd like to go with DATADIRNAME=share and +- dnl and CATOBJEXT=.gmo in this case. +- AC_CHECK_FUNC(bind_textdomain_codeset, +- [CATOBJEXT=.gmo +- DATADIRNAME=share], +- [CATOBJEXT=.mo +- DATADIRNAME=lib]) +- ;; +- *) +- CATOBJEXT=.mo +- DATADIRNAME=lib +- ;; +- esac]) +- LIBS="$glib_save_LIBS" +- INSTOBJEXT=.mo +- else +- gt_cv_have_gettext=no +- fi +- fi +- ]) ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, ++# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- if test "$gt_cv_have_gettext" = "yes" ; then +- AC_DEFINE(ENABLE_NLS, 1, +- [always defined to indicate that i18n is enabled]) +- fi ++# serial 16 + +- dnl Test whether we really found GNU xgettext. +- if test "$XGETTEXT" != ":"; then +- dnl If it is not GNU xgettext we define it as : so that the +- dnl Makefiles still can work. +- if $XGETTEXT --omit-header /dev/null 2> /dev/null; then +- : ; +- else +- AC_MSG_RESULT( +- [found xgettext program is not GNU xgettext; ignore it]) +- XGETTEXT=":" +- fi +- fi ++# This macro actually does too much. Some checks are only needed if ++# your package does certain things. But this isn't really a big deal. + +- # We need to process the po/ directory. +- POSUB=po ++# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) ++# AM_INIT_AUTOMAKE([OPTIONS]) ++# ----------------------------------------------- ++# The call with PACKAGE and VERSION arguments is the old style ++# call (pre autoconf-2.50), which is being phased out. PACKAGE ++# and VERSION should now be passed to AC_INIT and removed from ++# the call to AM_INIT_AUTOMAKE. ++# We support both call styles for the transition. After ++# the next Automake release, Autoconf can make the AC_INIT ++# arguments mandatory, and then we can depend on a new Autoconf ++# release and drop the old call support. ++AC_DEFUN([AM_INIT_AUTOMAKE], ++[AC_PREREQ([2.62])dnl ++dnl Autoconf wants to disallow AM_ names. We explicitly allow ++dnl the ones we care about. ++m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl ++AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl ++AC_REQUIRE([AC_PROG_INSTALL])dnl ++if test "`cd $srcdir && pwd`" != "`pwd`"; then ++ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output ++ # is not polluted with repeated "-I." ++ AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl ++ # test to see if srcdir already configured ++ if test -f $srcdir/config.status; then ++ AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) ++ fi ++fi + +- AC_OUTPUT_COMMANDS( +- [case "$CONFIG_FILES" in *po/Makefile.in*) +- sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile +- esac]) ++# test whether we have cygpath ++if test -z "$CYGPATH_W"; then ++ if (cygpath --version) >/dev/null 2>/dev/null; then ++ CYGPATH_W='cygpath -w' ++ else ++ CYGPATH_W=echo ++ fi ++fi ++AC_SUBST([CYGPATH_W]) + +- dnl These rules are solely for the distribution goal. While doing this +- dnl we only have to keep exactly one list of the available catalogs +- dnl in configure.in. +- for lang in $ALL_LINGUAS; do +- GMOFILES="$GMOFILES $lang.gmo" +- POFILES="$POFILES $lang.po" +- done ++# Define the identity of the package. ++dnl Distinguish between old-style and new-style calls. ++m4_ifval([$2], ++[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl ++ AC_SUBST([PACKAGE], [$1])dnl ++ AC_SUBST([VERSION], [$2])], ++[_AM_SET_OPTIONS([$1])dnl ++dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. ++m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, ++ [m4_fatal([AC_INIT should be called with package and version arguments])])dnl ++ AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl ++ AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +- dnl Make all variables we use known to autoconf. +- AC_SUBST(CATALOGS) +- AC_SUBST(CATOBJEXT) +- AC_SUBST(DATADIRNAME) +- AC_SUBST(GMOFILES) +- AC_SUBST(INSTOBJEXT) +- AC_SUBST(INTLLIBS) +- AC_SUBST(PO_IN_DATADIR_TRUE) +- AC_SUBST(PO_IN_DATADIR_FALSE) +- AC_SUBST(POFILES) +- AC_SUBST(POSUB) +- ]) ++_AM_IF_OPTION([no-define],, ++[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) ++ AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl + +-# AM_GLIB_GNU_GETTEXT +-# ------------------- +-# Do checks necessary for use of gettext. If a suitable implementation +-# of gettext is found in either in libintl or in the C library, +-# it will set INTLLIBS to the libraries needed for use of gettext +-# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable +-# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() +-# on various variables needed by the Makefile.in.in installed by +-# glib-gettextize. +-dnl +-glib_DEFUN([GLIB_GNU_GETTEXT], +- [AC_REQUIRE([AC_PROG_CC])dnl +- AC_REQUIRE([AC_HEADER_STDC])dnl +- +- GLIB_LC_MESSAGES +- GLIB_WITH_NLS ++# Some tools Automake needs. ++AC_REQUIRE([AM_SANITY_CHECK])dnl ++AC_REQUIRE([AC_ARG_PROGRAM])dnl ++AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) ++AM_MISSING_PROG(AUTOCONF, autoconf) ++AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) ++AM_MISSING_PROG(AUTOHEADER, autoheader) ++AM_MISSING_PROG(MAKEINFO, makeinfo) ++AC_REQUIRE([AM_PROG_INSTALL_SH])dnl ++AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl ++AC_REQUIRE([AM_PROG_MKDIR_P])dnl ++# We need awk for the "check" target. The system "awk" is bad on ++# some platforms. ++AC_REQUIRE([AC_PROG_AWK])dnl ++AC_REQUIRE([AC_PROG_MAKE_SET])dnl ++AC_REQUIRE([AM_SET_LEADING_DOT])dnl ++_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], ++ [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], ++ [_AM_PROG_TAR([v7])])]) ++_AM_IF_OPTION([no-dependencies],, ++[AC_PROVIDE_IFELSE([AC_PROG_CC], ++ [_AM_DEPENDENCIES(CC)], ++ [define([AC_PROG_CC], ++ defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl ++AC_PROVIDE_IFELSE([AC_PROG_CXX], ++ [_AM_DEPENDENCIES(CXX)], ++ [define([AC_PROG_CXX], ++ defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl ++AC_PROVIDE_IFELSE([AC_PROG_OBJC], ++ [_AM_DEPENDENCIES(OBJC)], ++ [define([AC_PROG_OBJC], ++ defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ++]) ++_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl ++dnl The `parallel-tests' driver may need to know about EXEEXT, so add the ++dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro ++dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. ++AC_CONFIG_COMMANDS_PRE(dnl ++[m4_provide_if([_AM_COMPILER_EXEEXT], ++ [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ++]) + +- if test "$gt_cv_have_gettext" = "yes"; then +- if test "x$ALL_LINGUAS" = "x"; then +- LINGUAS= +- else +- AC_MSG_CHECKING(for catalogs to be installed) +- NEW_LINGUAS= +- for presentlang in $ALL_LINGUAS; do +- useit=no +- if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then +- desiredlanguages="$LINGUAS" +- else +- desiredlanguages="$ALL_LINGUAS" +- fi +- for desiredlang in $desiredlanguages; do +- # Use the presentlang catalog if desiredlang is +- # a. equal to presentlang, or +- # b. a variant of presentlang (because in this case, +- # presentlang can be used as a fallback for messages +- # which are not translated in the desiredlang catalog). +- case "$desiredlang" in +- "$presentlang"*) useit=yes;; +- esac +- done +- if test $useit = yes; then +- NEW_LINGUAS="$NEW_LINGUAS $presentlang" +- fi +- done +- LINGUAS=$NEW_LINGUAS +- AC_MSG_RESULT($LINGUAS) +- fi ++dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not ++dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further ++dnl mangled by Autoconf and run in a shell conditional statement. ++m4_define([_AC_COMPILER_EXEEXT], ++m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) + +- dnl Construct list of names of catalog files to be constructed. +- if test -n "$LINGUAS"; then +- for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done +- fi +- fi + +- dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly +- dnl find the mkinstalldirs script in another subdir but ($top_srcdir). +- dnl Try to locate is. +- MKINSTALLDIRS= +- if test -n "$ac_aux_dir"; then +- MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" +- fi +- if test -z "$MKINSTALLDIRS"; then +- MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" +- fi +- AC_SUBST(MKINSTALLDIRS) ++# When config.status generates a header, we must update the stamp-h file. ++# This file resides in the same directory as the config header ++# that is generated. The stamp files are numbered to have different names. + +- dnl Generate list of files to be processed by xgettext which will +- dnl be included in po/Makefile. +- test -d po || mkdir po +- if test "x$srcdir" != "x."; then +- if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then +- posrcprefix="$srcdir/" +- else +- posrcprefix="../$srcdir/" +- fi +- else +- posrcprefix="../" +- fi +- rm -f po/POTFILES +- sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ +- < $srcdir/po/POTFILES.in > po/POTFILES +- ]) ++# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the ++# loop where config.status creates the headers, so we can generate ++# our stamp files there. ++AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], ++[# Compute $1's index in $config_headers. ++_am_arg=$1 ++_am_stamp_count=1 ++for _am_header in $config_headers :; do ++ case $_am_header in ++ $_am_arg | $_am_arg:* ) ++ break ;; ++ * ) ++ _am_stamp_count=`expr $_am_stamp_count + 1` ;; ++ esac ++done ++echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +-# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) +-# ------------------------------- +-# Define VARIABLE to the location where catalog files will +-# be installed by po/Makefile. +-glib_DEFUN([GLIB_DEFINE_LOCALEDIR], +-[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl +-glib_save_prefix="$prefix" +-glib_save_exec_prefix="$exec_prefix" +-glib_save_datarootdir="$datarootdir" +-test "x$prefix" = xNONE && prefix=$ac_default_prefix +-test "x$exec_prefix" = xNONE && exec_prefix=$prefix +-datarootdir=`eval echo "${datarootdir}"` +-if test "x$CATOBJEXT" = "x.mo" ; then +- localedir=`eval echo "${libdir}/locale"` +-else +- localedir=`eval echo "${datadir}/locale"` +-fi +-prefix="$glib_save_prefix" +-exec_prefix="$glib_save_exec_prefix" +-datarootdir="$glib_save_datarootdir" +-AC_DEFINE_UNQUOTED($1, "$localedir", +- [Define the location where the catalogs will be installed]) +-]) ++# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-dnl +-dnl Now the definitions that aclocal will find +-dnl +-ifdef(glib_configure_in,[],[ +-AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) +-AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) +-])dnl ++# AM_PROG_INSTALL_SH ++# ------------------ ++# Define $install_sh. ++AC_DEFUN([AM_PROG_INSTALL_SH], ++[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl ++if test x"${install_sh}" != xset; then ++ case $am_aux_dir in ++ *\ * | *\ *) ++ install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; ++ *) ++ install_sh="\${SHELL} $am_aux_dir/install-sh" ++ esac ++fi ++AC_SUBST(install_sh)]) + +-# GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) +-# +-# Create a temporary file with TEST-FILE as its contents and pass the +-# file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with +-# 0 and perform ACTION-IF-FAIL for any other exit status. +-AC_DEFUN([GLIB_RUN_PROG], +-[cat >conftest.foo <<_ACEOF +-$2 +-_ACEOF +-if AC_RUN_LOG([$1 conftest.foo]); then +- m4_ifval([$3], [$3], [:]) +-m4_ifvaln([$4], [else $4])dnl +-echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD +-sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD +-fi]) ++# Copyright (C) 2003, 2005 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + ++# serial 2 + +-# gnome-common.m4 +-# ++# Check whether the underlying file-system supports filenames ++# with a leading dot. For instance MS-DOS doesn't. ++AC_DEFUN([AM_SET_LEADING_DOT], ++[rm -rf .tst 2>/dev/null ++mkdir .tst 2>/dev/null ++if test -d .tst; then ++ am__leading_dot=. ++else ++ am__leading_dot=_ ++fi ++rmdir .tst 2>/dev/null ++AC_SUBST([am__leading_dot])]) + +-dnl GNOME_COMMON_INIT ++# Add --enable-maintainer-mode option to configure. -*- Autoconf -*- ++# From Jim Meyering + +-AC_DEFUN([GNOME_COMMON_INIT], +-[ +- dnl this macro should come after AC_CONFIG_MACRO_DIR +- AC_BEFORE([AC_CONFIG_MACRO_DIR], [$0]) ++# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- dnl ensure that when the Automake generated makefile calls aclocal, +- dnl it honours the $ACLOCAL_FLAGS environment variable +- ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}" +- if test -n "$ac_macro_dir"; then +- ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS" +- fi ++# serial 5 + +- AC_SUBST([ACLOCAL_AMFLAGS]) +-]) ++# AM_MAINTAINER_MODE([DEFAULT-MODE]) ++# ---------------------------------- ++# Control maintainer-specific portions of Makefiles. ++# Default is to disable them, unless `enable' is passed literally. ++# For symmetry, `disable' may be passed as well. Anyway, the user ++# can override the default with the --enable/--disable switch. ++AC_DEFUN([AM_MAINTAINER_MODE], ++[m4_case(m4_default([$1], [disable]), ++ [enable], [m4_define([am_maintainer_other], [disable])], ++ [disable], [m4_define([am_maintainer_other], [enable])], ++ [m4_define([am_maintainer_other], [enable]) ++ m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) ++AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles]) ++ dnl maintainer-mode's default is 'disable' unless 'enable' is passed ++ AC_ARG_ENABLE([maintainer-mode], ++[ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful ++ (and sometimes confusing) to the casual installer], ++ [USE_MAINTAINER_MODE=$enableval], ++ [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) ++ AC_MSG_RESULT([$USE_MAINTAINER_MODE]) ++ AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) ++ MAINT=$MAINTAINER_MODE_TRUE ++ AC_SUBST([MAINT])dnl ++] ++) + +-AC_DEFUN([GNOME_DEBUG_CHECK], +-[ +- AC_ARG_ENABLE([debug], +- AC_HELP_STRING([--enable-debug], +- [turn on debugging]),, +- [enable_debug=no]) ++AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) + +- if test x$enable_debug = xyes ; then +- AC_DEFINE(GNOME_ENABLE_DEBUG, 1, +- [Enable additional debugging at the expense of performance and size]) +- fi +-]) ++# Check to see how 'make' treats includes. -*- Autoconf -*- + +-dnl GNOME_MAINTAINER_MODE_DEFINES () +-dnl define DISABLE_DEPRECATED +-dnl +-AC_DEFUN([GNOME_MAINTAINER_MODE_DEFINES], +-[ +- AC_REQUIRE([AM_MAINTAINER_MODE]) ++# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- DISABLE_DEPRECATED="" +- if test $USE_MAINTAINER_MODE = yes; then +- DOMAINS="G ATK PANGO GDK GDK_PIXBUF GTK GCONF BONOBO BONOBO_UI GNOME LIBGLADE VTE GNOME_VFS WNCK LIBSOUP" +- for DOMAIN in $DOMAINS; do +- DISABLE_DEPRECATED="$DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES" +- done +- fi ++# serial 4 + +- AC_SUBST(DISABLE_DEPRECATED) ++# AM_MAKE_INCLUDE() ++# ----------------- ++# Check to see how make treats includes. ++AC_DEFUN([AM_MAKE_INCLUDE], ++[am_make=${MAKE-make} ++cat > confinc << 'END' ++am__doit: ++ @echo this is the am__doit target ++.PHONY: am__doit ++END ++# If we don't find an include directive, just comment out the code. ++AC_MSG_CHECKING([for style of include used by $am_make]) ++am__include="#" ++am__quote= ++_am_result=none ++# First try GNU make style include. ++echo "include confinc" > confmf ++# Ignore all kinds of additional output from `make'. ++case `$am_make -s -f confmf 2> /dev/null` in #( ++*the\ am__doit\ target*) ++ am__include=include ++ am__quote= ++ _am_result=GNU ++ ;; ++esac ++# Now try BSD make style include. ++if test "$am__include" = "#"; then ++ echo '.include "confinc"' > confmf ++ case `$am_make -s -f confmf 2> /dev/null` in #( ++ *the\ am__doit\ target*) ++ am__include=.include ++ am__quote="\"" ++ _am_result=BSD ++ ;; ++ esac ++fi ++AC_SUBST([am__include]) ++AC_SUBST([am__quote]) ++AC_MSG_RESULT([$_am_result]) ++rm -f confinc confmf + ]) + +-dnl GNOME_COMPILE_WARNINGS +-dnl Turn on many useful compiler warnings +-dnl For now, only works on GCC +-AC_DEFUN([GNOME_COMPILE_WARNINGS],[ +- dnl ****************************** +- dnl More compiler warnings +- dnl ****************************** ++# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- AC_ARG_ENABLE(compile-warnings, +- AC_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@], +- [Turn on compiler warnings]),, +- [enable_compile_warnings="m4_default([$1],[yes])"]) ++# serial 6 + +- warnCFLAGS= +- if test "x$GCC" != xyes; then +- enable_compile_warnings=no +- fi ++# AM_PROG_CC_C_O ++# -------------- ++# Like AC_PROG_CC_C_O, but changed for automake. ++AC_DEFUN([AM_PROG_CC_C_O], ++[AC_REQUIRE([AC_PROG_CC_C_O])dnl ++AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl ++AC_REQUIRE_AUX_FILE([compile])dnl ++# FIXME: we rely on the cache variable name because ++# there is no other way. ++set dummy $CC ++am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` ++eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o ++if test "$am_t" != yes; then ++ # Losing compiler, so override with the script. ++ # FIXME: It is wrong to rewrite CC. ++ # But if we don't then we get into trouble of one sort or another. ++ # A longer-term fix would be to have automake use am__CC in this case, ++ # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" ++ CC="$am_aux_dir/compile $CC" ++fi ++dnl Make sure AC_PROG_CC is never called again, or it will override our ++dnl setting of CC. ++m4_define([AC_PROG_CC], ++ [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) ++]) + +- warning_flags= +- realsave_CFLAGS="$CFLAGS" ++# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +- case "$enable_compile_warnings" in +- no) +- warning_flags= +- ;; +- minimum) +- warning_flags="-Wall" +- ;; +- yes) +- warning_flags="-Wall -Wmissing-prototypes" +- ;; +- maximum|error) +- warning_flags="-Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith" +- CFLAGS="$warning_flags $CFLAGS" +- for option in -Wno-sign-compare; do +- SAVE_CFLAGS="$CFLAGS" +- CFLAGS="$CFLAGS $option" +- AC_MSG_CHECKING([whether gcc understands $option]) +- AC_TRY_COMPILE([], [], +- has_option=yes, +- has_option=no,) +- CFLAGS="$SAVE_CFLAGS" +- AC_MSG_RESULT($has_option) +- if test $has_option = yes; then +- warning_flags="$warning_flags $option" +- fi +- unset has_option +- unset SAVE_CFLAGS +- done +- unset option +- if test "$enable_compile_warnings" = "error" ; then +- warning_flags="$warning_flags -Werror" +- fi +- ;; +- *) +- AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings) +- ;; +- esac +- CFLAGS="$realsave_CFLAGS" +- AC_MSG_CHECKING(what warning flags to pass to the C compiler) +- AC_MSG_RESULT($warning_flags) ++# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- AC_ARG_ENABLE(iso-c, +- AC_HELP_STRING([--enable-iso-c], +- [Try to warn if code is not ISO C ]),, +- [enable_iso_c=no]) ++# serial 6 + +- AC_MSG_CHECKING(what language compliance flags to pass to the C compiler) +- complCFLAGS= +- if test "x$enable_iso_c" != "xno"; then +- if test "x$GCC" = "xyes"; then +- case " $CFLAGS " in +- *[\ \ ]-ansi[\ \ ]*) ;; +- *) complCFLAGS="$complCFLAGS -ansi" ;; +- esac +- case " $CFLAGS " in +- *[\ \ ]-pedantic[\ \ ]*) ;; +- *) complCFLAGS="$complCFLAGS -pedantic" ;; +- esac +- fi +- fi +- AC_MSG_RESULT($complCFLAGS) ++# AM_MISSING_PROG(NAME, PROGRAM) ++# ------------------------------ ++AC_DEFUN([AM_MISSING_PROG], ++[AC_REQUIRE([AM_MISSING_HAS_RUN]) ++$1=${$1-"${am_missing_run}$2"} ++AC_SUBST($1)]) + +- WARN_CFLAGS="$warning_flags $complCFLAGS" +- AC_SUBST(WARN_CFLAGS) ++ ++# AM_MISSING_HAS_RUN ++# ------------------ ++# Define MISSING if not defined so far and test if it supports --run. ++# If it does, set am_missing_run to use it, otherwise, to nothing. ++AC_DEFUN([AM_MISSING_HAS_RUN], ++[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl ++AC_REQUIRE_AUX_FILE([missing])dnl ++if test x"${MISSING+set}" != xset; then ++ case $am_aux_dir in ++ *\ * | *\ *) ++ MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; ++ *) ++ MISSING="\${SHELL} $am_aux_dir/missing" ;; ++ esac ++fi ++# Use eval to expand $SHELL ++if eval "$MISSING --run true"; then ++ am_missing_run="$MISSING --run " ++else ++ am_missing_run= ++ AC_MSG_WARN([`missing' script is too old or missing]) ++fi + ]) + +-dnl For C++, do basically the same thing. ++# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-AC_DEFUN([GNOME_CXX_WARNINGS],[ +- AC_ARG_ENABLE(cxx-warnings, +- AC_HELP_STRING([--enable-cxx-warnings=@<:@no/minimum/yes@:>@] +- [Turn on compiler warnings.]),, +- [enable_cxx_warnings="m4_default([$1],[minimum])"]) ++# AM_PROG_MKDIR_P ++# --------------- ++# Check for `mkdir -p'. ++AC_DEFUN([AM_PROG_MKDIR_P], ++[AC_PREREQ([2.60])dnl ++AC_REQUIRE([AC_PROG_MKDIR_P])dnl ++dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, ++dnl while keeping a definition of mkdir_p for backward compatibility. ++dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. ++dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of ++dnl Makefile.ins that do not define MKDIR_P, so we do our own ++dnl adjustment using top_builddir (which is defined more often than ++dnl MKDIR_P). ++AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl ++case $mkdir_p in ++ [[\\/$]]* | ?:[[\\/]]*) ;; ++ */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; ++esac ++]) + +- AC_MSG_CHECKING(what warning flags to pass to the C++ compiler) +- warnCXXFLAGS= +- if test "x$GXX" != xyes; then +- enable_cxx_warnings=no +- fi +- if test "x$enable_cxx_warnings" != "xno"; then +- if test "x$GXX" = "xyes"; then +- case " $CXXFLAGS " in +- *[\ \ ]-Wall[\ \ ]*) ;; +- *) warnCXXFLAGS="-Wall -Wno-unused" ;; +- esac ++# Helper functions for option handling. -*- Autoconf -*- + +- ## -W is not all that useful. And it cannot be controlled +- ## with individual -Wno-xxx flags, unlike -Wall +- if test "x$enable_cxx_warnings" = "xyes"; then +- warnCXXFLAGS="$warnCXXFLAGS -Wshadow -Woverloaded-virtual" +- fi +- fi +- fi +- AC_MSG_RESULT($warnCXXFLAGS) ++# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +- AC_ARG_ENABLE(iso-cxx, +- AC_HELP_STRING([--enable-iso-cxx], +- [Try to warn if code is not ISO C++ ]),, +- [enable_iso_cxx=no]) ++# serial 4 + +- AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler) +- complCXXFLAGS= +- if test "x$enable_iso_cxx" != "xno"; then +- if test "x$GXX" = "xyes"; then +- case " $CXXFLAGS " in +- *[\ \ ]-ansi[\ \ ]*) ;; +- *) complCXXFLAGS="$complCXXFLAGS -ansi" ;; +- esac ++# _AM_MANGLE_OPTION(NAME) ++# ----------------------- ++AC_DEFUN([_AM_MANGLE_OPTION], ++[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +- case " $CXXFLAGS " in +- *[\ \ ]-pedantic[\ \ ]*) ;; +- *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;; +- esac +- fi +- fi +- AC_MSG_RESULT($complCXXFLAGS) ++# _AM_SET_OPTION(NAME) ++# ------------------------------ ++# Set option NAME. Presently that only means defining a flag for this option. ++AC_DEFUN([_AM_SET_OPTION], ++[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) + +- WARN_CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS" +- AC_SUBST(WARN_CXXFLAGS) +-]) ++# _AM_SET_OPTIONS(OPTIONS) ++# ---------------------------------- ++# OPTIONS is a space-separated list of Automake options. ++AC_DEFUN([_AM_SET_OPTIONS], ++[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +-# nls.m4 serial 3 (gettext-0.15) +-dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc. +-dnl This file is free software; the Free Software Foundation +-dnl gives unlimited permission to copy and/or distribute it, +-dnl with or without modifications, as long as this notice is preserved. +-dnl +-dnl This file can can be used in projects which are not available under +-dnl the GNU General Public License or the GNU Library General Public +-dnl License but which still want to provide support for the GNU gettext +-dnl functionality. +-dnl Please note that the actual code of the GNU gettext library is covered +-dnl by the GNU Library General Public License, and the rest of the GNU +-dnl gettext package package is covered by the GNU General Public License. +-dnl They are *not* in the public domain. ++# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) ++# ------------------------------------------- ++# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. ++AC_DEFUN([_AM_IF_OPTION], ++[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +-dnl Authors: +-dnl Ulrich Drepper , 1995-2000. +-dnl Bruno Haible , 2000-2003. ++# Check to make sure that the build environment is sane. -*- Autoconf -*- + +-AC_PREREQ(2.50) ++# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 ++# Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-AC_DEFUN([AM_NLS], +-[ +- AC_MSG_CHECKING([whether NLS is requested]) +- dnl Default is enabled NLS +- AC_ARG_ENABLE(nls, +- [ --disable-nls do not use Native Language Support], +- USE_NLS=$enableval, USE_NLS=yes) +- AC_MSG_RESULT($USE_NLS) +- AC_SUBST(USE_NLS) +-]) ++# serial 5 + +-# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +-# +-# Copyright © 2004 Scott James Remnant . +-# +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2 of the License, or +-# (at your option) any later version. +-# +-# This program is distributed in the hope that it will be useful, but +-# WITHOUT ANY WARRANTY; without even the implied warranty of +-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +-# General Public License for more details. +-# +-# You should have received a copy of the GNU General Public License +-# along with this program; if not, write to the Free Software +-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-# +-# As a special exception to the GNU General Public License, if you +-# distribute this file as part of a program that contains a +-# configuration script generated by Autoconf, you may include it under +-# the same distribution terms that you use for the rest of that program. ++# AM_SANITY_CHECK ++# --------------- ++AC_DEFUN([AM_SANITY_CHECK], ++[AC_MSG_CHECKING([whether build environment is sane]) ++# Just in case ++sleep 1 ++echo timestamp > conftest.file ++# Reject unsafe characters in $srcdir or the absolute working directory ++# name. Accept space and tab only in the latter. ++am_lf=' ++' ++case `pwd` in ++ *[[\\\"\#\$\&\'\`$am_lf]]*) ++ AC_MSG_ERROR([unsafe absolute working directory name]);; ++esac ++case $srcdir in ++ *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) ++ AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; ++esac + +-# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +-# ---------------------------------- +-AC_DEFUN([PKG_PROG_PKG_CONFIG], +-[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) +-m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) +-AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl +-if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then +- AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) ++# Do `set' in a subshell so we don't clobber the current shell's ++# arguments. Must try -L first in case configure is actually a ++# symlink; some systems play weird games with the mod time of symlinks ++# (eg FreeBSD returns the mod time of the symlink's containing ++# directory). ++if ( ++ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` ++ if test "$[*]" = "X"; then ++ # -L didn't work. ++ set X `ls -t "$srcdir/configure" conftest.file` ++ fi ++ rm -f conftest.file ++ if test "$[*]" != "X $srcdir/configure conftest.file" \ ++ && test "$[*]" != "X conftest.file $srcdir/configure"; then ++ ++ # If neither matched, then we have a broken ls. This can happen ++ # if, for instance, CONFIG_SHELL is bash and it inherits a ++ # broken ls alias from the environment. This has actually ++ # happened. Such a system could not be considered "sane". ++ AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken ++alias in your environment]) ++ fi ++ ++ test "$[2]" = conftest.file ++ ) ++then ++ # Ok. ++ : ++else ++ AC_MSG_ERROR([newly created file is older than distributed files! ++Check your system clock]) + fi +-if test -n "$PKG_CONFIG"; then +- _pkg_min_version=m4_default([$1], [0.9.0]) +- AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) +- if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then +- AC_MSG_RESULT([yes]) +- else +- AC_MSG_RESULT([no]) +- PKG_CONFIG="" +- fi +- +-fi[]dnl +-])# PKG_PROG_PKG_CONFIG ++AC_MSG_RESULT(yes)]) + +-# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +-# +-# Check to see whether a particular set of modules exists. Similar +-# to PKG_CHECK_MODULES(), but does not set variables or print errors. +-# ++# Copyright (C) 2009 Free Software Foundation, Inc. + # +-# Similar to PKG_CHECK_MODULES, make sure that the first instance of +-# this or PKG_CHECK_MODULES is called, or make sure to call +-# PKG_CHECK_EXISTS manually +-# -------------------------------------------------------------- +-AC_DEFUN([PKG_CHECK_EXISTS], +-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +-if test -n "$PKG_CONFIG" && \ +- AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then +- m4_ifval([$2], [$2], [:]) +-m4_ifvaln([$3], [else +- $3])dnl +-fi]) ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + ++# serial 1 + +-# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +-# --------------------------------------------- +-m4_define([_PKG_CONFIG], +-[if test -n "$$1"; then +- pkg_cv_[]$1="$$1" +- elif test -n "$PKG_CONFIG"; then +- PKG_CHECK_EXISTS([$3], +- [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], +- [pkg_failed=yes]) +- else +- pkg_failed=untried +-fi[]dnl +-])# _PKG_CONFIG ++# AM_SILENT_RULES([DEFAULT]) ++# -------------------------- ++# Enable less verbose build rules; with the default set to DEFAULT ++# (`yes' being less verbose, `no' or empty being verbose). ++AC_DEFUN([AM_SILENT_RULES], ++[AC_ARG_ENABLE([silent-rules], ++[ --enable-silent-rules less verbose build output (undo: `make V=1') ++ --disable-silent-rules verbose build output (undo: `make V=0')]) ++case $enable_silent_rules in ++yes) AM_DEFAULT_VERBOSITY=0;; ++no) AM_DEFAULT_VERBOSITY=1;; ++*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; ++esac ++AC_SUBST([AM_DEFAULT_VERBOSITY])dnl ++AM_BACKSLASH='\' ++AC_SUBST([AM_BACKSLASH])dnl ++_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ++]) + +-# _PKG_SHORT_ERRORS_SUPPORTED +-# ----------------------------- +-AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], +-[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then +- _pkg_short_errors_supported=yes +-else +- _pkg_short_errors_supported=no +-fi[]dnl +-])# _PKG_SHORT_ERRORS_SUPPORTED ++# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + ++# AM_PROG_INSTALL_STRIP ++# --------------------- ++# One issue with vendor `install' (even GNU) is that you can't ++# specify the program used to strip binaries. This is especially ++# annoying in cross-compiling environments, where the build's strip ++# is unlikely to handle the host's binaries. ++# Fortunately install-sh will honor a STRIPPROG variable, so we ++# always use install-sh in `make install-strip', and initialize ++# STRIPPROG with the value of the STRIP variable (set by the user). ++AC_DEFUN([AM_PROG_INSTALL_STRIP], ++[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl ++# Installed binaries are usually stripped using `strip' when the user ++# run `make install-strip'. However `strip' might not be the right ++# tool to use in cross-compilation environments, therefore Automake ++# will honor the `STRIP' environment variable to overrule this program. ++dnl Don't test for $cross_compiling = yes, because it might be `maybe'. ++if test "$cross_compiling" != no; then ++ AC_CHECK_TOOL([STRIP], [strip], :) ++fi ++INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" ++AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +-# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +-# [ACTION-IF-NOT-FOUND]) +-# +-# +-# Note that if there is a possibility the first call to +-# PKG_CHECK_MODULES might not happen, you should be sure to include an +-# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac +-# ++# Copyright (C) 2006, 2008 Free Software Foundation, Inc. + # +-# -------------------------------------------------------------- +-AC_DEFUN([PKG_CHECK_MODULES], +-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +-AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +-AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-pkg_failed=no +-AC_MSG_CHECKING([for $1]) ++# serial 2 + +-_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +-_PKG_CONFIG([$1][_LIBS], [libs], [$2]) ++# _AM_SUBST_NOTMAKE(VARIABLE) ++# --------------------------- ++# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. ++# This macro is traced by Automake. ++AC_DEFUN([_AM_SUBST_NOTMAKE]) + +-m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS +-and $1[]_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details.]) ++# AM_SUBST_NOTMAKE(VARIABLE) ++# --------------------------- ++# Public sister of _AM_SUBST_NOTMAKE. ++AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + +-if test $pkg_failed = yes; then +- _PKG_SHORT_ERRORS_SUPPORTED +- if test $_pkg_short_errors_supported = yes; then +- $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` +- else +- $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD ++# Check how to create a tarball. -*- Autoconf -*- + +- ifelse([$4], , [AC_MSG_ERROR(dnl +-[Package requirements ($2) were not met: ++# Copyright (C) 2004, 2005 Free Software Foundation, Inc. ++# ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. + +-$$1_PKG_ERRORS ++# serial 2 + +-Consider adjusting the PKG_CONFIG_PATH environment variable if you +-installed software in a non-standard prefix. ++# _AM_PROG_TAR(FORMAT) ++# -------------------- ++# Check how to create a tarball in format FORMAT. ++# FORMAT should be one of `v7', `ustar', or `pax'. ++# ++# Substitute a variable $(am__tar) that is a command ++# writing to stdout a FORMAT-tarball containing the directory ++# $tardir. ++# tardir=directory && $(am__tar) > result.tar ++# ++# Substitute a variable $(am__untar) that extract such ++# a tarball read from stdin. ++# $(am__untar) < result.tar ++AC_DEFUN([_AM_PROG_TAR], ++[# Always define AMTAR for backward compatibility. ++AM_MISSING_PROG([AMTAR], [tar]) ++m4_if([$1], [v7], ++ [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], ++ [m4_case([$1], [ustar],, [pax],, ++ [m4_fatal([Unknown tar format])]) ++AC_MSG_CHECKING([how to create a $1 tar archive]) ++# Loop over all known methods to create a tar archive until one works. ++_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' ++_am_tools=${am_cv_prog_tar_$1-$_am_tools} ++# Do not fold the above two line into one, because Tru64 sh and ++# Solaris sh will not grok spaces in the rhs of `-'. ++for _am_tool in $_am_tools ++do ++ case $_am_tool in ++ gnutar) ++ for _am_tar in tar gnutar gtar; ++ do ++ AM_RUN_LOG([$_am_tar --version]) && break ++ done ++ am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' ++ am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' ++ am__untar="$_am_tar -xf -" ++ ;; ++ plaintar) ++ # Must skip GNU tar: if it does not support --format= it doesn't create ++ # ustar tarball either. ++ (tar --version) >/dev/null 2>&1 && continue ++ am__tar='tar chf - "$$tardir"' ++ am__tar_='tar chf - "$tardir"' ++ am__untar='tar xf -' ++ ;; ++ pax) ++ am__tar='pax -L -x $1 -w "$$tardir"' ++ am__tar_='pax -L -x $1 -w "$tardir"' ++ am__untar='pax -r' ++ ;; ++ cpio) ++ am__tar='find "$$tardir" -print | cpio -o -H $1 -L' ++ am__tar_='find "$tardir" -print | cpio -o -H $1 -L' ++ am__untar='cpio -i -H $1 -d' ++ ;; ++ none) ++ am__tar=false ++ am__tar_=false ++ am__untar=false ++ ;; ++ esac + +-_PKG_TEXT +-])], +- [AC_MSG_RESULT([no]) +- $4]) +-elif test $pkg_failed = untried; then +- ifelse([$4], , [AC_MSG_FAILURE(dnl +-[The pkg-config script could not be found or is too old. Make sure it +-is in your PATH or set the PKG_CONFIG environment variable to the full +-path to pkg-config. ++ # If the value was cached, stop now. We just wanted to have am__tar ++ # and am__untar set. ++ test -n "${am_cv_prog_tar_$1}" && break + +-_PKG_TEXT ++ # tar/untar a dummy directory, and stop if the command works ++ rm -rf conftest.dir ++ mkdir conftest.dir ++ echo GrepMe > conftest.dir/file ++ AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) ++ rm -rf conftest.dir ++ if test -s conftest.tar; then ++ AM_RUN_LOG([$am__untar /dev/null 2>&1 && break ++ fi ++done ++rm -rf conftest.dir + +-To get pkg-config, see .])], +- [$4]) +-else +- $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS +- $1[]_LIBS=$pkg_cv_[]$1[]_LIBS +- AC_MSG_RESULT([yes]) +- ifelse([$3], , :, [$3]) +-fi[]dnl +-])# PKG_CHECK_MODULES ++AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) ++AC_MSG_RESULT([$am_cv_prog_tar_$1])]) ++AC_SUBST([am__tar]) ++AC_SUBST([am__untar]) ++]) # _AM_PROG_TAR + + m4_include([m4/d-type.m4]) + m4_include([m4/gnome-doc-utils.m4]) +Index: gnome-panel-2.27.91/applets/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/applets/Makefile.in 2009-08-25 15:45:24.000000000 +0200 ++++ gnome-panel-2.27.91/applets/Makefile.in 2009-09-01 10:52:20.000000000 +0200 +@@ -219,6 +219,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/applets/clock/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/applets/clock/Makefile.in 2009-08-25 15:45:25.000000000 +0200 ++++ gnome-panel-2.27.91/applets/clock/Makefile.in 2009-09-01 10:52:21.000000000 +0200 +@@ -372,6 +372,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/applets/clock/pixmaps/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/applets/clock/pixmaps/Makefile.in 2009-08-25 15:45:25.000000000 +0200 ++++ gnome-panel-2.27.91/applets/clock/pixmaps/Makefile.in 2009-09-01 10:52:21.000000000 +0200 +@@ -203,6 +203,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/applets/fish/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/applets/fish/Makefile.in 2009-08-25 15:45:25.000000000 +0200 ++++ gnome-panel-2.27.91/applets/fish/Makefile.in 2009-09-01 10:52:21.000000000 +0200 +@@ -263,6 +263,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/applets/notification_area/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/applets/notification_area/Makefile.in 2009-08-25 15:45:25.000000000 +0200 ++++ gnome-panel-2.27.91/applets/notification_area/Makefile.in 2009-09-01 10:52:21.000000000 +0200 +@@ -290,6 +290,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/applets/wncklet/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/applets/wncklet/Makefile.in 2009-08-25 15:45:26.000000000 +0200 ++++ gnome-panel-2.27.91/applets/wncklet/Makefile.in 2009-09-01 10:52:21.000000000 +0200 +@@ -274,6 +274,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/doc/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/doc/Makefile.in 2009-08-25 15:45:26.000000000 +0200 ++++ gnome-panel-2.27.91/doc/Makefile.in 2009-09-01 10:52:21.000000000 +0200 +@@ -219,6 +219,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/doc/reference/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/doc/reference/Makefile.in 2009-08-25 15:45:26.000000000 +0200 ++++ gnome-panel-2.27.91/doc/reference/Makefile.in 2009-09-01 10:52:21.000000000 +0200 +@@ -219,6 +219,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/doc/reference/panel-applet/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/doc/reference/panel-applet/Makefile.in 2009-08-25 15:45:26.000000000 +0200 ++++ gnome-panel-2.27.91/doc/reference/panel-applet/Makefile.in 2009-09-01 10:52:21.000000000 +0200 +@@ -186,6 +186,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/gnome-panel/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/gnome-panel/Makefile.in 2009-08-25 15:45:26.000000000 +0200 ++++ gnome-panel-2.27.91/gnome-panel/Makefile.in 2009-09-01 10:52:21.000000000 +0200 +@@ -82,10 +82,11 @@ + main.$(OBJEXT) panel-widget.$(OBJEXT) button-widget.$(OBJEXT) \ + xstuff.$(OBJEXT) panel-session.$(OBJEXT) \ + panel-compatibility.$(OBJEXT) panel.$(OBJEXT) applet.$(OBJEXT) \ +- drawer.$(OBJEXT) panel-config-global.$(OBJEXT) \ +- panel-util.$(OBJEXT) panel-gconf.$(OBJEXT) \ +- panel-properties-dialog.$(OBJEXT) panel-run-dialog.$(OBJEXT) \ +- menu.$(OBJEXT) panel-context-menu.$(OBJEXT) launcher.$(OBJEXT) \ ++ applet-signaler.$(OBJEXT) drawer.$(OBJEXT) \ ++ panel-config-global.$(OBJEXT) panel-util.$(OBJEXT) \ ++ panel-gconf.$(OBJEXT) panel-properties-dialog.$(OBJEXT) \ ++ panel-run-dialog.$(OBJEXT) menu.$(OBJEXT) \ ++ panel-context-menu.$(OBJEXT) launcher.$(OBJEXT) \ + panel-applet-frame.$(OBJEXT) panel-shell.$(OBJEXT) \ + panel-background.$(OBJEXT) panel-background-monitor.$(OBJEXT) \ + panel-stock-icons.$(OBJEXT) panel-action-button.$(OBJEXT) \ +@@ -325,6 +326,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +@@ -462,6 +464,7 @@ + panel-compatibility.c \ + panel.c \ + applet.c \ ++ applet-signaler.c \ + drawer.c \ + panel-config-global.c \ + panel-util.c \ +@@ -507,6 +510,7 @@ + panel-compatibility.h \ + panel.h \ + applet.h \ ++ applet-signaler.h \ + drawer.h \ + panel-util.h \ + panel-properties-dialog.h \ +@@ -747,6 +751,7 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GNOME_Panel-common.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GNOME_Panel-skels.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GNOME_Panel-stubs.Po@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/applet-signaler.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/applet.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/button-widget.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drawer.Po@am__quote@ +Index: gnome-panel-2.27.91/gnome-panel/libpanel-util/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/gnome-panel/libpanel-util/Makefile.in 2009-08-25 15:45:26.000000000 +0200 ++++ gnome-panel-2.27.91/gnome-panel/libpanel-util/Makefile.in 2009-09-01 10:52:21.000000000 +0200 +@@ -213,6 +213,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/help/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/help/Makefile.in 2009-08-25 15:45:26.000000000 +0200 ++++ gnome-panel-2.27.91/help/Makefile.in 2009-09-01 10:52:21.000000000 +0200 +@@ -219,6 +219,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/help/clock/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/help/clock/Makefile.in 2009-08-25 15:45:27.000000000 +0200 ++++ gnome-panel-2.27.91/help/clock/Makefile.in 2009-09-01 10:52:21.000000000 +0200 +@@ -204,6 +204,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/help/fish/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/help/fish/Makefile.in 2009-08-25 15:45:27.000000000 +0200 ++++ gnome-panel-2.27.91/help/fish/Makefile.in 2009-09-01 10:52:22.000000000 +0200 +@@ -204,6 +204,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/icons/16x16/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/icons/16x16/Makefile.in 2009-08-25 15:45:27.000000000 +0200 ++++ gnome-panel-2.27.91/icons/16x16/Makefile.in 2009-09-01 10:52:22.000000000 +0200 +@@ -203,6 +203,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/icons/22x22/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/icons/22x22/Makefile.in 2009-08-25 15:45:27.000000000 +0200 ++++ gnome-panel-2.27.91/icons/22x22/Makefile.in 2009-09-01 10:52:22.000000000 +0200 +@@ -203,6 +203,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/icons/24x24/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/icons/24x24/Makefile.in 2009-08-25 15:45:27.000000000 +0200 ++++ gnome-panel-2.27.91/icons/24x24/Makefile.in 2009-09-01 10:52:22.000000000 +0200 +@@ -203,6 +203,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/icons/32x32/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/icons/32x32/Makefile.in 2009-08-25 15:45:27.000000000 +0200 ++++ gnome-panel-2.27.91/icons/32x32/Makefile.in 2009-09-01 10:52:22.000000000 +0200 +@@ -203,6 +203,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/icons/48x48/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/icons/48x48/Makefile.in 2009-08-25 15:45:27.000000000 +0200 ++++ gnome-panel-2.27.91/icons/48x48/Makefile.in 2009-09-01 10:52:22.000000000 +0200 +@@ -203,6 +203,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/icons/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/icons/Makefile.in 2009-08-25 15:45:28.000000000 +0200 ++++ gnome-panel-2.27.91/icons/Makefile.in 2009-09-01 10:52:22.000000000 +0200 +@@ -243,6 +243,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/icons/scalable/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/icons/scalable/Makefile.in 2009-08-25 15:45:28.000000000 +0200 ++++ gnome-panel-2.27.91/icons/scalable/Makefile.in 2009-09-01 10:52:22.000000000 +0200 +@@ -203,6 +203,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/idl/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/idl/Makefile.in 2009-08-25 15:45:28.000000000 +0200 ++++ gnome-panel-2.27.91/idl/Makefile.in 2009-09-01 10:52:22.000000000 +0200 +@@ -203,6 +203,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/libpanel-applet/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/libpanel-applet/Makefile.in 2009-08-25 15:45:28.000000000 +0200 ++++ gnome-panel-2.27.91/libpanel-applet/Makefile.in 2009-09-01 10:52:22.000000000 +0200 +@@ -269,6 +269,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ +Index: gnome-panel-2.27.91/man/Makefile.in +=================================================================== +--- gnome-panel-2.27.91.orig/man/Makefile.in 2009-08-25 15:45:28.000000000 +0200 ++++ gnome-panel-2.27.91/man/Makefile.in 2009-09-01 10:52:22.000000000 +0200 +@@ -204,6 +204,7 @@ + PACKAGE_NAME = @PACKAGE_NAME@ + PACKAGE_STRING = @PACKAGE_STRING@ + PACKAGE_TARNAME = @PACKAGE_TARNAME@ ++PACKAGE_URL = @PACKAGE_URL@ + PACKAGE_VERSION = @PACKAGE_VERSION@ + PANEL_CFLAGS = @PANEL_CFLAGS@ + PANEL_LIBS = @PANEL_LIBS@ --- gnome-panel-2.27.91.orig/debian/patches/25_dynamic_fusa_detection.patch +++ gnome-panel-2.27.91/debian/patches/25_dynamic_fusa_detection.patch @@ -0,0 +1,580 @@ +Index: gnome-panel-2.26.2/gnome-panel/applet.c +=================================================================== +--- gnome-panel-2.26.2.orig/gnome-panel/applet.c 2009-04-19 18:45:09.000000000 +0100 ++++ gnome-panel-2.26.2/gnome-panel/applet.c 2009-06-22 23:56:57.000000000 +0100 +@@ -34,6 +34,7 @@ + #include "panel-globals.h" + #include "panel-properties-dialog.h" + #include "panel-lockdown.h" ++#include "applet-signaler.h" + + #define SMALL_ICON_SIZE 20 + +@@ -734,6 +735,7 @@ + info->widget = NULL; + + registered_applets = g_slist_remove (registered_applets, info); ++ panel_applet_signaler_remove_applet(info); + + queued_position_saves = + g_slist_remove (queued_position_saves, info); +@@ -1173,6 +1175,26 @@ + return info->id; + } + ++/** \brief Get the Bonobo IID of the Applet ++ \param info The AppletInfo struct representing the applet ++ \return Either the IID of the applet or NULL if the applet does ++ not have an IID. ++*/ ++const char * ++panel_applet_get_iid (AppletInfo *info) ++{ ++ if (!info) ++ return NULL; ++ if (info->type != PANEL_OBJECT_BONOBO) ++ return NULL; ++ ++ PanelAppletFrame * frame = PANEL_APPLET_FRAME(info->data); ++ if (frame == NULL) ++ return NULL; /* This should never happen, but just in case */ ++ ++ return panel_applet_frame_get_iid(frame); ++} ++ + const char * + panel_applet_get_id_by_widget (GtkWidget *applet_widget) + { +@@ -1196,6 +1218,9 @@ + { + GSList *l; + ++ if (id == NULL) ++ return NULL; ++ + for (l = registered_applets; l; l = l->next) { + AppletInfo *info = l->data; + +@@ -1206,6 +1231,33 @@ + return NULL; + } + ++/** \brief Will find an applet by looking for it's IID ++ \param iid The IID to look for in an applet ++ \return Either the AppletInfo structure representing the applet or ++ NULL if an applet with that IID can not be found. ++*/ ++AppletInfo * ++panel_applet_get_by_iid (const char *iid) ++{ ++ GSList *l; ++ ++ if (iid == NULL) ++ return NULL; ++ ++ for (l = registered_applets; l; l = l->next) { ++ AppletInfo *info = l->data; ++ const char *applet_iid = panel_applet_get_iid(info); ++ ++ if (applet_iid == NULL) ++ continue; ++ ++ if (!strcmp (applet_iid, iid)) ++ return info; ++ } ++ ++ return NULL; ++} ++ + GSList * + panel_applet_list_applets (void) + { +@@ -1341,6 +1393,7 @@ + else + gtk_widget_child_focus (applet, GTK_DIR_TAB_FORWARD); + ++ panel_applet_signaler_add_applet(info); + return info; + } + +Index: gnome-panel-2.26.2/gnome-panel/applet.h +=================================================================== +--- gnome-panel-2.26.2.orig/gnome-panel/applet.h 2009-04-19 18:45:09.000000000 +0100 ++++ gnome-panel-2.26.2/gnome-panel/applet.h 2009-06-22 23:56:57.000000000 +0100 +@@ -56,8 +56,10 @@ + void panel_applet_stop_loading (const char *id); + + const char *panel_applet_get_id (AppletInfo *info); ++const char *panel_applet_get_iid (AppletInfo *info); + const char *panel_applet_get_id_by_widget (GtkWidget *widget); + AppletInfo *panel_applet_get_by_id (const char *id); ++AppletInfo *panel_applet_get_by_iid (const char *iid); + AppletInfo *panel_applet_get_by_type (PanelObjectType object_type, GdkScreen *screen); + + GSList *panel_applet_list_applets (void); +Index: gnome-panel-2.26.2/gnome-panel/applet-signaler.c +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ gnome-panel-2.26.2/gnome-panel/applet-signaler.c 2009-06-22 23:56:57.000000000 +0100 +@@ -0,0 +1,139 @@ ++/* ++ * Fast User Switch Applet: status-manager.c ++ * ++ * Copyright (C) 2008 Canonical, Ltd. ++ * Authors: ++ * Ted Gould ++ * ++ * This program is free software; you can redistribute it and/or modify ++ * it under the terms of the GNU General Public License as published by ++ * the Free Software Foundation; either version 2 of the License, or ++ * (at your option) any later version. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ++ */ ++ ++#include "applet-signaler.h" ++ ++#define PANEL_APPLET_SIGNALER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PANEL_TYPE_APPLET_SIGNALER, PanelAppletSignalerClass)) ++#define PANEL_IS_APPLET_SIGNALER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PANEL_TYPE_APPLET_SIGNALER)) ++#define PANEL_APPLET_SIGNALER_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), PANEL_TYPE_APPLET_SIGNALER, PanelAppletSignalerClass)) ++ ++/* Signals */ ++enum { ++ APPLET_ADDED, ++ APPLET_REMOVED, ++ LAST_SIGNAL ++}; ++ ++struct _PanelAppletSignaler ++{ ++ GObject parent; ++}; ++ ++typedef struct _PanelAppletSignalerClass ++{ ++ GObjectClass parent_class; ++ ++ PanelAppletSignalerFunc applet_added; ++ PanelAppletSignalerFunc applet_removed; ++} ++PanelAppletSignalerClass; ++ ++guint signals[LAST_SIGNAL] = {0}; ++ ++G_DEFINE_TYPE (PanelAppletSignaler, panel_applet_signaler, G_TYPE_OBJECT); ++ ++static void ++panel_applet_signaler_finalize (GObject * obj) ++{ ++ return; ++} ++ ++static void ++panel_applet_signaler_class_init (PanelAppletSignalerClass * class) ++{ ++ GObjectClass * gobj; ++ gobj = G_OBJECT_CLASS(class); ++ ++ gobj->finalize = panel_applet_signaler_finalize; ++ ++ /* Signals */ ++ signals[APPLET_ADDED] = g_signal_new (PANEL_APPLET_SIGNALER_SIGNAL_APPLET_ADDED, ++ G_TYPE_FROM_CLASS(class), ++ G_SIGNAL_RUN_LAST, ++ G_STRUCT_OFFSET(PanelAppletSignalerClass, applet_added), ++ NULL, NULL, /* accumulator */ ++ g_cclosure_marshal_VOID__POINTER, ++ G_TYPE_NONE, /* Return value */ ++ 1, G_TYPE_POINTER); /* Parameters */ ++ ++ signals[APPLET_REMOVED] = g_signal_new (PANEL_APPLET_SIGNALER_SIGNAL_APPLET_REMOVED, ++ G_TYPE_FROM_CLASS(class), ++ G_SIGNAL_RUN_LAST, ++ G_STRUCT_OFFSET(PanelAppletSignalerClass, applet_removed), ++ NULL, NULL, /* accumulator */ ++ g_cclosure_marshal_VOID__POINTER, ++ G_TYPE_NONE, /* Return value */ ++ 1, G_TYPE_POINTER); /* Parameters */ ++ ++ return; ++} ++ ++static void ++panel_applet_signaler_init (PanelAppletSignaler * pas) ++{ ++ ++ g_debug("Initialized Panel Applet Signaler."); ++ return; ++} ++ ++static PanelAppletSignaler * default_signaler = NULL; ++ ++PanelAppletSignaler * ++panel_applet_signaler_get_default (void) ++{ ++ if (default_signaler == NULL) { ++ default_signaler = g_object_new(PANEL_TYPE_APPLET_SIGNALER, NULL); ++ g_object_add_weak_pointer(G_OBJECT(default_signaler), ++ (gpointer *)&default_signaler); ++ } ++ ++ return default_signaler; ++} ++ ++static guint applet_count = 0; ++ ++void ++panel_applet_signaler_add_applet (AppletInfo * applet) ++{ ++ g_debug("Adding applet %d.", applet_count++); ++ ++ /* Ensure that one is created */ ++ PanelAppletSignaler * signaler = panel_applet_signaler_get_default(); ++ ++ g_signal_emit(signaler, signals[APPLET_ADDED], NULL, applet); ++ ++ return; ++} ++ ++void ++panel_applet_signaler_remove_applet (AppletInfo * applet) ++{ ++ g_debug("Removing applet %d.", --applet_count); ++ ++ /* Ensure that one is created */ ++ PanelAppletSignaler * signaler = panel_applet_signaler_get_default(); ++ ++ g_signal_emit(signaler, signals[APPLET_REMOVED], NULL, applet); ++ ++ return; ++} ++ +Index: gnome-panel-2.26.2/gnome-panel/applet-signaler.h +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ gnome-panel-2.26.2/gnome-panel/applet-signaler.h 2009-06-22 23:56:57.000000000 +0100 +@@ -0,0 +1,52 @@ ++/* ++ * Fast User Switch Applet: status-manager.c ++ * ++ * Copyright (C) 2008 Canonical, Ltd. ++ * Authors: ++ * Ted Gould ++ * ++ * This program is free software; you can redistribute it and/or modify ++ * it under the terms of the GNU General Public License as published by ++ * the Free Software Foundation; either version 2 of the License, or ++ * (at your option) any later version. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ++ */ ++ ++#ifndef APPLET_SIGNALER_H ++#define APPLET_SIGNALER_H ++ ++#include ++#include "applet.h" ++ ++G_BEGIN_DECLS ++ ++/* Applet Signaler */ ++/* Singleton Object to handle the world of applets */ ++ ++#define PANEL_TYPE_APPLET_SIGNALER (panel_applet_signaler_get_type()) ++#define PANEL_APPLET_SIGNALER(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), PANEL_TYPE_APPLET_SIGNALER, PanelAppletSignaler)) ++#define PANEL_IS_APPLET_SIGNALER(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), PANEL_TYPE_APPLET_SIGNALER)) ++ ++#define PANEL_APPLET_SIGNALER_SIGNAL_APPLET_ADDED "applet-added" ++#define PANEL_APPLET_SIGNALER_SIGNAL_APPLET_REMOVED "applet-removed" ++ ++typedef struct _PanelAppletSignaler PanelAppletSignaler; ++typedef void (*PanelAppletSignalerFunc)(PanelAppletSignaler * pas, AppletInfo * info, gpointer data); ++ ++GType panel_applet_signaler_get_type (void) G_GNUC_CONST; ++PanelAppletSignaler * panel_applet_signaler_get_default (void); ++ ++void panel_applet_signaler_add_applet (AppletInfo * applet); ++void panel_applet_signaler_remove_applet (AppletInfo * applet); ++ ++G_END_DECLS ++ ++#endif /* APPLET_SIGNALER_H */ +Index: gnome-panel-2.26.2/gnome-panel/Makefile.am +=================================================================== +--- gnome-panel-2.26.2.orig/gnome-panel/Makefile.am 2009-05-02 02:01:58.000000000 +0100 ++++ gnome-panel-2.26.2/gnome-panel/Makefile.am 2009-06-22 23:56:57.000000000 +0100 +@@ -66,6 +66,7 @@ + panel-compatibility.c \ + panel.c \ + applet.c \ ++ applet-signaler.c \ + drawer.c \ + panel-config-global.c \ + panel-util.c \ +@@ -111,6 +112,7 @@ + panel-compatibility.h \ + panel.h \ + applet.h \ ++ applet-signaler.h \ + drawer.h \ + panel-util.h \ + panel-properties-dialog.h \ +Index: gnome-panel-2.26.2/gnome-panel/panel-applet-frame.c +=================================================================== +--- gnome-panel-2.26.2.orig/gnome-panel/panel-applet-frame.c 2009-04-19 18:45:09.000000000 +0100 ++++ gnome-panel-2.26.2/gnome-panel/panel-applet-frame.c 2009-06-22 23:56:57.000000000 +0100 +@@ -1442,3 +1442,15 @@ + + frame->priv->panel = panel; + } ++ ++/** \brief Gets the IID for a panel applet frame ++ \param frame Applet frame ++ \return The IID of the applet or NULL on error ++*/ ++const gchar * ++panel_applet_frame_get_iid (PanelAppletFrame * frame) ++{ ++ g_return_val_if_fail (PANEL_IS_APPLET_FRAME (frame), NULL); ++ ++ return frame->priv->iid; ++} +Index: gnome-panel-2.26.2/gnome-panel/panel-applet-frame.h +=================================================================== +--- gnome-panel-2.26.2.orig/gnome-panel/panel-applet-frame.h 2009-04-19 18:45:09.000000000 +0100 ++++ gnome-panel-2.26.2/gnome-panel/panel-applet-frame.h 2009-06-22 23:56:57.000000000 +0100 +@@ -78,6 +78,8 @@ + void panel_applet_frame_set_panel (PanelAppletFrame *frame, + PanelWidget *panel); + ++const gchar * panel_applet_frame_get_iid (PanelAppletFrame * frame); ++ + G_END_DECLS + + #endif /* __PANEL_APPLET_FRAME_H__ */ +Index: gnome-panel-2.26.2/gnome-panel/panel-menu-bar.c +=================================================================== +--- gnome-panel-2.26.2.orig/gnome-panel/panel-menu-bar.c 2009-04-19 18:45:09.000000000 +0100 ++++ gnome-panel-2.26.2/gnome-panel/panel-menu-bar.c 2009-06-22 23:56:57.000000000 +0100 +@@ -47,6 +47,7 @@ + #include "panel-stock-icons.h" + #include "panel-typebuiltins.h" + #include "panel-icon-names.h" ++#include "applet-signaler.h" + + G_DEFINE_TYPE (PanelMenuBar, panel_menu_bar, GTK_TYPE_MENU_BAR) + +@@ -99,6 +100,36 @@ + return FALSE; + } + ++#define FUSA_APPLET_IID "OAFIID:GNOME_FastUserSwitchApplet" ++ ++static void ++panel_menu_bar_set_tooltip_remove (PanelAppletSignaler * pas, AppletInfo * info, GtkWidget * widget) ++{ ++ const char * iid = panel_applet_get_iid(info); ++ if (iid == NULL) ++ return; ++ ++ if (!strcmp(iid, FUSA_APPLET_IID)) ++ panel_util_set_tooltip_text (widget, ++ _("Change desktop appearance and behavior, get help, or log out")); ++ ++ return; ++} ++ ++static void ++panel_menu_bar_set_tooltip_add (PanelAppletSignaler * pas, AppletInfo * info, GtkWidget * widget) ++{ ++ const char * iid = panel_applet_get_iid(info); ++ if (iid == NULL) ++ return; ++ ++ if (!strcmp(iid, FUSA_APPLET_IID)) ++ panel_util_set_tooltip_text (widget, ++ _("Change system appearance and behavior, or get help")); ++ ++ return; ++} ++ + static void + panel_menu_bar_setup_tooltip (PanelMenuBar *menubar) + { +@@ -109,6 +140,12 @@ + panel_util_set_tooltip_text (menubar->priv->desktop_item, + _("Change desktop appearance and behavior, get help, or log out")); + ++ g_signal_connect(panel_applet_signaler_get_default(), PANEL_APPLET_SIGNALER_SIGNAL_APPLET_ADDED, ++ G_CALLBACK(panel_menu_bar_set_tooltip_add), menubar->priv->desktop_item); ++ g_signal_connect(panel_applet_signaler_get_default(), PANEL_APPLET_SIGNALER_SIGNAL_APPLET_REMOVED, ++ G_CALLBACK(panel_menu_bar_set_tooltip_remove), menubar->priv->desktop_item); ++ ++ + //FIXME: this doesn't handle the right-click case. Sigh. + /* Hide tooltip if a menu is activated */ + g_signal_connect (menubar->priv->applications_item, +Index: gnome-panel-2.26.2/gnome-panel/panel-menu-items.c +=================================================================== +--- gnome-panel-2.26.2.orig/gnome-panel/panel-menu-items.c 2009-06-22 23:55:50.000000000 +0100 ++++ gnome-panel-2.26.2/gnome-panel/panel-menu-items.c 2009-06-22 23:56:57.000000000 +0100 +@@ -53,6 +53,7 @@ + #include "panel-recent.h" + #include "panel-stock-icons.h" + #include "panel-util.h" ++#include "applet-signaler.h" + + #define BOOKMARKS_FILENAME ".gtk-bookmarks" + #define DESKTOP_IS_HOME_DIR_DIR "/apps/nautilus/preferences" +@@ -1492,6 +1493,34 @@ + "menu_panel", panel); + } + ++#define FUSA_APPLET_IID "OAFIID:GNOME_FastUserSwitchApplet" ++ ++static void ++panel_menu_items_hide_on_fusa (PanelAppletSignaler * pas, AppletInfo * info, GtkWidget * widget) ++{ ++ const char * iid = panel_applet_get_iid(info); ++ if (iid == NULL) ++ return; ++ ++ if (!strcmp(iid, FUSA_APPLET_IID)) ++ gtk_widget_hide(widget); ++ ++ return; ++} ++ ++static void ++panel_menu_items_show_on_fusa (PanelAppletSignaler * pas, AppletInfo * info, GtkWidget * widget) ++{ ++ const char * iid = panel_applet_get_iid(info); ++ if (iid == NULL) ++ return; ++ ++ if (!strcmp(iid, FUSA_APPLET_IID)) ++ gtk_widget_show(widget); ++ ++ return; ++} ++ + void + panel_menu_items_append_lock_logout (GtkWidget *menu) + { +@@ -1502,6 +1531,10 @@ + const char *translate; + char *label; + char *tooltip; ++ GtkWidget *separator = NULL; ++ AppletInfo *fusa = NULL; ++ ++ fusa = panel_applet_get_by_iid(FUSA_APPLET_IID); + + separator_inserted = FALSE; + children = gtk_container_get_children (GTK_CONTAINER (menu)); +@@ -1509,17 +1542,34 @@ + if (last != NULL) { + separator_inserted = GTK_IS_SEPARATOR (GTK_WIDGET (last->data)); + } ++ if (separator_inserted) { ++ g_signal_connect(panel_applet_signaler_get_default(), PANEL_APPLET_SIGNALER_SIGNAL_APPLET_ADDED, ++ G_CALLBACK(panel_menu_items_hide_on_fusa), last->data); ++ g_signal_connect(panel_applet_signaler_get_default(), PANEL_APPLET_SIGNALER_SIGNAL_APPLET_REMOVED, ++ G_CALLBACK(panel_menu_items_show_on_fusa), last->data); ++ if (fusa != NULL) { ++ gtk_widget_hide(GTK_WIDGET(last->data)); ++ } ++ } + g_list_free (children); + + if (panel_lock_screen_action_available ("lock")) { + item = panel_menu_items_create_action_item (PANEL_ACTION_LOCK); + if (item != NULL) { + if (!separator_inserted) { +- add_menu_separator (menu); ++ separator = add_menu_separator (menu); + separator_inserted = TRUE; + } + + gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); ++ ++ g_signal_connect(panel_applet_signaler_get_default(), PANEL_APPLET_SIGNALER_SIGNAL_APPLET_ADDED, ++ G_CALLBACK(panel_menu_items_hide_on_fusa), item); ++ g_signal_connect(panel_applet_signaler_get_default(), PANEL_APPLET_SIGNALER_SIGNAL_APPLET_REMOVED, ++ G_CALLBACK(panel_menu_items_show_on_fusa), item); ++ if (fusa != NULL) { ++ gtk_widget_hide(GTK_WIDGET(item)); ++ } + } + } + +@@ -1562,19 +1612,53 @@ + + if (item != NULL) { + if (!separator_inserted) { +- add_menu_separator (menu); ++ separator = add_menu_separator (menu); + separator_inserted = TRUE; + } + + gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); ++ ++ g_signal_connect(panel_applet_signaler_get_default(), PANEL_APPLET_SIGNALER_SIGNAL_APPLET_ADDED, ++ G_CALLBACK(panel_menu_items_hide_on_fusa), item); ++ g_signal_connect(panel_applet_signaler_get_default(), PANEL_APPLET_SIGNALER_SIGNAL_APPLET_REMOVED, ++ G_CALLBACK(panel_menu_items_show_on_fusa), item); ++ if (fusa != NULL) { ++ gtk_widget_hide(GTK_WIDGET(item)); ++ } + } + + item = panel_menu_items_create_action_item (PANEL_ACTION_SHUTDOWN); + if (item != NULL) { + if (!separator_inserted) +- add_menu_separator (menu); ++ separator = add_menu_separator (menu); + + gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); ++ ++ g_signal_connect(panel_applet_signaler_get_default(), PANEL_APPLET_SIGNALER_SIGNAL_APPLET_ADDED, ++ G_CALLBACK(panel_menu_items_hide_on_fusa), item); ++ g_signal_connect(panel_applet_signaler_get_default(), PANEL_APPLET_SIGNALER_SIGNAL_APPLET_REMOVED, ++ G_CALLBACK(panel_menu_items_show_on_fusa), item); ++ if (fusa != NULL) { ++ gtk_widget_hide(GTK_WIDGET(item)); ++ } ++ } ++ ++ /* Okay, this is confusing, but required to make the patch ++ * smaller. Basically if the seperator was created externally it ++ * gets the signal handlers added when it is detected, but the ++ * local variable remains NULL. This allows the return in the ++ * middle to still work. But, if the seperator gets built in the ++ * remainder of this function then the signal handlers get added ++ * on here as the local variable becomes a pointer to that created ++ * seperator. Whew. */ ++ if (separator != NULL) { ++ g_signal_connect(panel_applet_signaler_get_default(), PANEL_APPLET_SIGNALER_SIGNAL_APPLET_ADDED, ++ G_CALLBACK(panel_menu_items_hide_on_fusa), separator); ++ g_signal_connect(panel_applet_signaler_get_default(), PANEL_APPLET_SIGNALER_SIGNAL_APPLET_REMOVED, ++ G_CALLBACK(panel_menu_items_show_on_fusa), separator); ++ if (fusa != NULL) { ++ gtk_widget_hide(GTK_WIDGET(separator)); ++ } + } + } + --- gnome-panel-2.27.91.orig/debian/patches/28_prefer_lvds_monitor.patch +++ gnome-panel-2.27.91/debian/patches/28_prefer_lvds_monitor.patch @@ -0,0 +1,243 @@ +# Ubuntu: https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/192009 +# Upstream: http://bugzilla.gnome.org/show_bug.cgi?id=562944 +# Patch: http://bugzilla.gnome.org/attachment.cgi?id=130174&action=view +# Description: Patch from Federico to prefer LVDS outputs when placing the +# panel in a multi-screen environment, which should improve the experience +# for laptop users. +From 52a0e04c904ebf37c9bc6a4b58f7679095be2026 Mon Sep 17 00:00:00 2001 +From: Federico Mena Quintero +Date: Wed, 4 Mar 2009 12:13:27 -0600 +Subject: [PATCH 1/3] bgo562944 - Separate the code to get the monitor geometries from the code to compress overlapping monitors + +Signed-off-by: Federico Mena Quintero +--- + gnome-panel/panel-multiscreen.c | 38 ++++++++++++++++++++++++++++++++------ + 1 files changed, 32 insertions(+), 6 deletions(-) + +diff --git a/gnome-panel/panel-multiscreen.c b/gnome-panel/panel-multiscreen.c +index 06df009..3469882 100644 +--- a/gnome-panel/panel-multiscreen.c ++++ b/gnome-panel/panel-multiscreen.c +@@ -41,6 +41,22 @@ static int *monitors = NULL; + static GdkRectangle **geometries = NULL; + static gboolean initialized = FALSE; + ++static void ++get_raw_monitor_geometries (GdkScreen *screen, int *monitors_ret, GdkRectangle **geometries_ret) ++{ ++ int num_monitors; ++ GdkRectangle *geometries; ++ ++ num_monitors = gdk_screen_get_n_monitors (screen); ++ geometries = g_new (GdkRectangle, num_monitors); ++ ++ for (i = 0; i < num_monitors; i++) ++ gdk_screen_get_monitor_geometry (screen, i, &(geometries[i])); ++ ++ *monitors_ret = num_monitors; ++ *geometries_ret = geometries; ++} ++ + static gboolean + overlaps (GdkRectangle *a, GdkRectangle *b) + { +@@ -54,17 +70,14 @@ pixels_in_rectangle (GdkRectangle *r) + } + + static void +-get_monitors_for_screen (GdkScreen *screen, int *monitors_ret, GdkRectangle **geometries_ret) ++compress_overlapping_monitors (int *num_monitors_inout, GdkRectangle **geometries_inout) + { + int num_monitors; + GdkRectangle *geometries; + int i; + +- num_monitors = gdk_screen_get_n_monitors (screen); +- geometries = g_new (GdkRectangle, num_monitors); +- +- for (i = 0; i < num_monitors; i++) +- gdk_screen_get_monitor_geometry (screen, i, &(geometries[i])); ++ num_monitors = *num_monitors_inout; ++ geometries = *geometries_inout; + + /* http://bugzilla.gnome.org/show_bug.cgi?id=530969 + * https://bugzilla.novell.com/show_bug.cgi?id=310208 +@@ -142,6 +155,19 @@ get_monitors_for_screen (GdkScreen *screen, int *monitors_ret, GdkRectangle **ge + } + } + ++ *num_monitors_inout = num_monitors; ++ *geometries_inout = geometries; ++} ++ ++static void ++get_monitors_for_screen (GdkScreen *screen, int *monitors_ret, GdkRectangle **geometries_ret) ++{ ++ int num_monitors; ++ GdkRectangle *geometries; ++ ++ get_raw_monitor_geometries (screen, &num_monitors, &geometries); ++ compress_overlapping_monitors (&num_monitors, &geometries); ++ + *monitors_ret = num_monitors; + *geometries_ret = geometries; + } +-- +1.6.0.2 + + +From 0cb257294b3ecb6cdc1d2146746c9f182dc6942f Mon Sep 17 00:00:00 2001 +From: Federico Mena Quintero +Date: Wed, 4 Mar 2009 14:06:01 -0600 +Subject: [PATCH 2/3] bgo562944 - Get monitor info from directly RANDR, and put LVDS outputs first in the list + +Signed-off-by: Federico Mena Quintero +--- + gnome-panel/panel-multiscreen.c | 114 ++++++++++++++++++++++++++++++++++++++- + 1 files changed, 112 insertions(+), 2 deletions(-) + +diff --git a/gnome-panel/panel-multiscreen.c b/gnome-panel/panel-multiscreen.c +index 3469882..3902c73 100644 +--- a/gnome-panel/panel-multiscreen.c ++++ b/gnome-panel/panel-multiscreen.c +@@ -25,6 +25,9 @@ + + #include + ++#include ++#include ++#include + #include "panel-multiscreen.h" + + #include +@@ -41,12 +44,107 @@ static int *monitors = NULL; + static GdkRectangle **geometries = NULL; + static gboolean initialized = FALSE; + ++static gboolean ++get_xrandr_monitor_geometries (GdkScreen *screen, int *monitors_ret, GdkRectangle **geometries_ret) ++{ ++ /* GTK+ 2.14.x uses the Xinerama API, instead of RANDR, to get the ++ * monitor geometries. It does this to avoid calling ++ * XRRGetScreenResources(), which is slow as it re-detects all the ++ * monitors --- note that XRRGetScreenResourcesCurrent() had not been ++ * introduced yet. Using Xinerama in GTK+ has the bad side effect that ++ * gdk_screen_get_monitor_plug_name() will return NULL, as Xinerama does ++ * not provide that information, unlike RANDR. ++ * ++ * Here we need to identify the output names, so that we can put the ++ * built-in LCD in a laptop *before* all other outputs. This is so that ++ * gnome-panel will normally prefer to appear on the "native" display ++ * rather than on an external monitor. ++ * ++ * To get the output names and geometries, we will not use ++ * gdk_screen_get_n_monitors() and friends, but rather we will call ++ * XRR*() directly. ++ * ++ * See https://bugzilla.novell.com/show_bug.cgi?id=479684 for this ++ * particular bug, and and ++ * http://bugzilla.gnome.org/show_bug.cgi?id=562944 for a more long-term ++ * solution. ++ */ ++ ++ Display *xdisplay; ++ XRRScreenResources *resources; ++ GArray *geometries; ++ int i; ++ gboolean driver_is_pre_randr_1_2; ++ ++ xdisplay = GDK_SCREEN_XDISPLAY (screen); ++ ++ resources = XRRGetScreenResources (xdisplay, GDK_WINDOW_XWINDOW (gdk_screen_get_root_window (screen))); ++ if (!resources) ++ return FALSE; ++ ++ geometries = g_array_sized_new (FALSE, FALSE, sizeof (GdkRectangle), resources->noutput); ++ ++ driver_is_pre_randr_1_2 = FALSE; ++ ++ for (i = 0; i < resources->noutput; i++) { ++ XRROutputInfo *output; ++ ++ output = XRRGetOutputInfo (xdisplay, resources, resources->outputs[i]); ++ ++ if (g_strcmp0 (output->name, "default") == 0) ++ driver_is_pre_randr_1_2 = TRUE; /* Drivers before RANDR 1.2 return "default" for the output name */ ++ ++ if (output->connection != RR_Disconnected && output->crtc != 0) { ++ XRRCrtcInfo *crtc; ++ GdkRectangle rect; ++ ++ crtc = XRRGetCrtcInfo (xdisplay, resources, output->crtc); ++ ++ rect.x = crtc->x; ++ rect.y = crtc->y; ++ rect.width = crtc->width; ++ rect.height = crtc->height; ++ ++ XRRFreeCrtcInfo (crtc); ++ ++ /* "LVDS" is the oh-so-intuitive name that X gives to laptop LCDs. ++ * ++ * Note that on RANDR 1.3, the right way to check for ++ * this is to get the ConnectorType property for the ++ * output, and see if it is "Panel". Yes, they changed ++ * the known output names for 1.3. Amateurs. ++ */ ++ ++ if (g_str_has_prefix (output->name, "LVDS")) /* can be "LVDS0", "LVDS-0", etc. */ ++ g_array_prepend_vals (geometries, &rect, 1); ++ else ++ g_array_append_vals (geometries, &rect, 1); ++ } ++ ++ XRRFreeOutputInfo (output); ++ } ++ ++ XRRFreeScreenResources (resources); ++ ++ if (driver_is_pre_randr_1_2) { ++ /* Drivers before RANDR 1.2 don't provide useful info about outputs */ ++ g_array_free (geometries, TRUE); ++ return FALSE; ++ } ++ ++ *monitors_ret = geometries->len; ++ *geometries_ret = (GdkRectangle *) g_array_free (geometries, FALSE); ++ ++ return TRUE; ++} ++ + static void +-get_raw_monitor_geometries (GdkScreen *screen, int *monitors_ret, GdkRectangle **geometries_ret) ++get_gdk_monitor_geometries (GdkScreen *screen, int *monitors_ret, GdkRectangle **geometries_ret) + { + int num_monitors; + GdkRectangle *geometries; +- ++ int i; ++ + num_monitors = gdk_screen_get_n_monitors (screen); + geometries = g_new (GdkRectangle, num_monitors); + +@@ -57,6 +155,18 @@ get_raw_monitor_geometries (GdkScreen *screen, int *monitors_ret, GdkRectangle * + *geometries_ret = geometries; + } + ++static void ++get_raw_monitor_geometries (GdkScreen *screen, int *monitors_ret, GdkRectangle **geometries_ret) ++{ ++ XRRScreenResources *resources; ++ GArray *geometries; ++ ++ if (get_xrandr_monitor_geometries (screen, monitors_ret, geometries_ret)) ++ return; ++ ++ get_gdk_monitor_geometries (screen, monitors_ret, geometries_ret); ++} ++ + static gboolean + overlaps (GdkRectangle *a, GdkRectangle *b) + { +-- +1.6.0.2 --- gnome-panel-2.27.91.orig/debian/patches/85_disable_shutdown_on_ltsp.patch +++ gnome-panel-2.27.91/debian/patches/85_disable_shutdown_on_ltsp.patch @@ -0,0 +1,13 @@ +Index: gnome-panel-2.27.91/gnome-panel/panel-menu-items.c +=================================================================== +--- gnome-panel-2.27.91.orig/gnome-panel/panel-menu-items.c 2009-08-26 12:33:59.000000000 +1000 ++++ gnome-panel-2.27.91/gnome-panel/panel-menu-items.c 2009-08-26 12:40:06.000000000 +1000 +@@ -1580,7 +1580,7 @@ + } + + item = panel_menu_items_create_action_item (PANEL_ACTION_SHUTDOWN); +- if (item != NULL) { ++ if (item != NULL && !g_getenv("LTSP_CLIENT")){ + if (!separator_inserted) + add_menu_separator (menu); + --- gnome-panel-2.27.91.orig/debian/patches/99_ltmain_as-needed.patch +++ gnome-panel-2.27.91/debian/patches/99_ltmain_as-needed.patch @@ -0,0 +1,32 @@ +Index: gnome-panel-2.27.91/ltmain.sh +=================================================================== +--- gnome-panel-2.27.91.orig/ltmain.sh 2009-08-25 23:45:11.000000000 +1000 ++++ gnome-panel-2.27.91/ltmain.sh 2009-08-26 12:41:40.000000000 +1000 +@@ -4716,6 +4716,11 @@ + arg=$func_stripname_result + ;; + ++ -Wl,--as-needed) ++ deplibs="$deplibs $arg" ++ continue ++ ;; ++ + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result +@@ -5067,6 +5072,15 @@ + lib= + found=no + case $deplib in ++ -Wl,--as-needed) ++ if test "$linkmode,$pass" = "prog,link"; then ++ compile_deplibs="$deplib $compile_deplibs" ++ finalize_deplibs="$deplib $finalize_deplibs" ++ else ++ deplibs="$deplib $deplibs" ++ fi ++ continue ++ ;; + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" --- gnome-panel-2.27.91.orig/debian/patches/16_compiz_workspace_switcher.patch +++ gnome-panel-2.27.91/debian/patches/16_compiz_workspace_switcher.patch @@ -0,0 +1,575 @@ +Index: gnome-panel-2.27.91/applets/wncklet/workspace-switcher.c +=================================================================== +--- gnome-panel-2.27.91.orig/applets/wncklet/workspace-switcher.c 2009-08-26 12:22:16.000000000 +1000 ++++ gnome-panel-2.27.91/applets/wncklet/workspace-switcher.c 2009-08-26 12:32:09.000000000 +1000 +@@ -34,6 +34,10 @@ + #define MAX_REASONABLE_ROWS 16 + #define DEFAULT_ROWS 1 + ++#define COMPIZ_OPTIONS "/apps/compiz/general/screen0/options" ++#define COMPIZ_HSIZE "/apps/compiz/general/screen0/options/hsize" ++#define COMPIZ_VSIZE "/apps/compiz/general/screen0/options/vsize" ++ + #define NEVER_SENSITIVE "never_sensitive" + #define NUM_WORKSPACES "/apps/metacity/general/num_workspaces" + #define WORKSPACE_NAME "/apps/metacity/workspace_names/name_1" +@@ -56,6 +60,7 @@ + + /* Properties: */ + GtkWidget *properties_dialog; ++ GtkWidget *switcher_frame; + GtkWidget *workspaces_frame; + GtkWidget *workspace_names_label; + GtkWidget *workspace_names_scroll; +@@ -67,6 +72,9 @@ + GtkWidget *num_workspaces_spin; + GtkWidget *workspaces_tree; + GtkListStore *workspaces_store; ++ GtkWidget *viewports_frame; ++ GtkWidget *hsize_spin; ++ GtkWidget *vsize_spin; + + GtkWidget *about; + +@@ -96,15 +104,18 @@ + pager->orientation); + wnck_pager_set_n_rows (WNCK_PAGER (pager->pager), + pager->n_rows); +- wnck_pager_set_show_all (WNCK_PAGER (pager->pager), +- pager->display_all); + +- if (pager->wm == PAGER_WM_METACITY) ++ if (pager->wm == PAGER_WM_METACITY) { ++ wnck_pager_set_show_all (WNCK_PAGER (pager->pager), ++ pager->display_all); + wnck_pager_set_display_mode (WNCK_PAGER (pager->pager), + pager->display_mode); +- else ++ } else { ++ wnck_pager_set_show_all (WNCK_PAGER (pager->pager), ++ FALSE); + wnck_pager_set_display_mode (WNCK_PAGER (pager->pager), + WNCK_PAGER_DISPLAY_CONTENT); ++ } + } + + static void +@@ -120,20 +131,28 @@ + gtk_widget_show (pager->workspace_names_scroll); + if (pager->display_workspaces_toggle) + gtk_widget_show (pager->display_workspaces_toggle); ++ if (pager->viewports_frame) ++ gtk_widget_hide (pager->viewports_frame); + break; + case PAGER_WM_COMPIZ: ++ if (pager->switcher_frame) ++ gtk_widget_hide (pager->switcher_frame); + if (pager->workspaces_frame) +- gtk_widget_show (pager->workspaces_frame); ++ gtk_widget_hide (pager->workspaces_frame); + if (pager->workspace_names_label) + gtk_widget_hide (pager->workspace_names_label); + if (pager->workspace_names_scroll) + gtk_widget_hide (pager->workspace_names_scroll); + if (pager->display_workspaces_toggle) + gtk_widget_hide (pager->display_workspaces_toggle); ++ if (pager->viewports_frame) ++ gtk_widget_show (pager->viewports_frame); + break; + case PAGER_WM_UNKNOWN: + if (pager->workspaces_frame) + gtk_widget_hide (pager->workspaces_frame); ++ if (pager->viewports_frame) ++ gtk_widget_hide (pager->viewports_frame); + break; + default: + g_assert_not_reached (); +@@ -155,7 +174,7 @@ + pager->wm = PAGER_WM_UNKNOWN; + else if (strcmp (wm_name, "Metacity") == 0) + pager->wm = PAGER_WM_METACITY; +- else if (strcmp (wm_name, "Compiz") == 0) ++ else if (strcmp (wm_name, "compiz") == 0) + pager->wm = PAGER_WM_COMPIZ; + else + pager->wm = PAGER_WM_UNKNOWN; +@@ -211,7 +230,8 @@ + pager->orientation = new_orient; + pager_update (pager); + if (pager->label_row_col) +- gtk_label_set_text (GTK_LABEL (pager->label_row_col), pager->orientation == GTK_ORIENTATION_HORIZONTAL ? _("rows") : _("columns")); ++ gtk_label_set_text (GTK_LABEL (pager->label_row_col), ++ pager->orientation == GTK_ORIENTATION_HORIZONTAL ? _("rows") : _("columns")); + } + + static void +@@ -663,6 +683,34 @@ + NULL); + } + ++/* compiz' "columns" */ ++static void ++hsize_value_changed (GtkSpinButton *button, ++ gpointer data) ++{ ++ GConfClient* client = gconf_client_get_default (); ++ ++ gconf_client_set_int (client, ++ COMPIZ_HSIZE, ++ gtk_spin_button_get_value_as_int (button), ++ NULL); ++ g_object_unref (client); ++} ++ ++/* compiz' "rows" */ ++static void ++vsize_value_changed (GtkSpinButton *button, ++ gpointer data) ++{ ++ GConfClient* client = gconf_client_get_default (); ++ ++ gconf_client_set_int (client, ++ COMPIZ_VSIZE, ++ gtk_spin_button_get_value_as_int (button), ++ NULL); ++ g_object_unref (client); ++} ++ + static void + update_workspaces_model (PagerData *pager) + { +@@ -787,6 +835,7 @@ + PagerData *pager) + { + pager->properties_dialog = NULL; ++ pager->switcher_frame = NULL; + pager->workspaces_frame = NULL; + pager->workspace_names_label = NULL; + pager->workspace_names_scroll = NULL; +@@ -798,6 +847,9 @@ + pager->num_workspaces_spin = NULL; + pager->workspaces_tree = NULL; + pager->workspaces_store = NULL; ++ pager->viewports_frame = NULL; ++ pager->hsize_spin = NULL; ++ pager->vsize_spin = NULL; + } + + static gboolean +@@ -900,13 +952,49 @@ + GtkTreeViewColumn *column; + GtkCellRenderer *cell; + int nr_ws, i; +- ++ GConfClient* client = NULL; ++ gint hsize; ++ gint vsize; ++ ++ pager->switcher_frame = WID ("switcher_frame"); + pager->workspaces_frame = WID ("workspaces_frame"); + pager->workspace_names_label = WID ("workspace_names_label"); + pager->workspace_names_scroll = WID ("workspace_names_scroll"); + ++ if (pager->wm == PAGER_WM_COMPIZ) ++ { ++ client = gconf_client_get_default (); ++ ++ pager->viewports_frame = WID ("viewports_frame"); ++ pager->hsize_spin = WID ("hsize_spin"); ++ pager->vsize_spin = WID ("vsize_spin"); ++ ++ g_signal_connect (G_OBJECT (pager->hsize_spin), ++ "value-changed", ++ (GCallback) hsize_value_changed, ++ NULL); ++ ++ g_signal_connect (G_OBJECT (pager->vsize_spin), ++ "value-changed", ++ (GCallback) vsize_value_changed, ++ NULL); ++ ++ /* set value for hsize (compiz's "columns") */ ++ hsize = gconf_client_get_int (client, COMPIZ_HSIZE, NULL); ++ gtk_spin_button_set_value (GTK_SPIN_BUTTON (pager->hsize_spin), ++ hsize); ++ ++ /* set value for vsize (compiz's "rows") */ ++ vsize = gconf_client_get_int (client, COMPIZ_VSIZE, NULL); ++ gtk_spin_button_set_value (GTK_SPIN_BUTTON (pager->vsize_spin), ++ vsize); ++ ++ g_object_unref (client); ++ } ++ + pager->display_workspaces_toggle = WID ("workspace_name_toggle"); +- setup_sensitivity (pager, builder, ++ setup_sensitivity (pager, ++ builder, + "workspace_name_toggle", + NULL, + NULL, +@@ -914,7 +1002,8 @@ + + pager->all_workspaces_radio = WID ("all_workspaces_radio"); + pager->current_only_radio = WID ("current_only_radio"); +- setup_sensitivity (pager, builder, ++ setup_sensitivity (pager, ++ builder, + "all_workspaces_radio", + "current_only_radio", + "label_row_col", +@@ -922,14 +1011,16 @@ + + pager->num_rows_spin = WID ("num_rows_spin"); + pager->label_row_col = WID("label_row_col"); +- setup_sensitivity (pager, builder, ++ setup_sensitivity (pager, ++ builder, + "num_rows_spin", + NULL, + NULL, + "num_rows" /* key */); + + pager->num_workspaces_spin = WID ("num_workspaces_spin"); +- setup_sensitivity (pager, builder, ++ setup_sensitivity (pager, ++ builder, + "num_workspaces_spin", + NULL, + NULL, +@@ -943,92 +1034,130 @@ + WORKSPACE_NAME /* key */); + + /* Display workspace names: */ +- +- g_signal_connect (G_OBJECT (pager->display_workspaces_toggle), "toggled", +- (GCallback) display_workspace_names_toggled, pager); ++ g_signal_connect (G_OBJECT (pager->display_workspaces_toggle), ++ "toggled", ++ (GCallback) display_workspace_names_toggled, ++ pager); + +- if (pager->display_mode == WNCK_PAGER_DISPLAY_NAME) { ++ if (pager->display_mode == WNCK_PAGER_DISPLAY_NAME) + value = TRUE; +- } else { ++ else + value = FALSE; +- } ++ + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (pager->display_workspaces_toggle), + value); + + /* Display all workspaces: */ +- g_signal_connect (G_OBJECT (pager->all_workspaces_radio), "toggled", +- (GCallback) all_workspaces_toggled, pager); ++ g_signal_connect (G_OBJECT (pager->all_workspaces_radio), ++ "toggled", ++ (GCallback) all_workspaces_toggled, ++ pager); + +- if (pager->display_all) { +- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (pager->all_workspaces_radio), TRUE); +- if ( ! g_object_get_data (G_OBJECT (pager->num_rows_spin), NEVER_SENSITIVE)) +- gtk_widget_set_sensitive (pager->num_rows_spin, TRUE); +- } else { +- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (pager->current_only_radio), TRUE); +- gtk_widget_set_sensitive (pager->num_rows_spin, FALSE); ++ if (pager->display_all) ++ { ++ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (pager->all_workspaces_radio), ++ TRUE); ++ ++ if (!g_object_get_data (G_OBJECT (pager->num_rows_spin), ++ NEVER_SENSITIVE)) ++ gtk_widget_set_sensitive (pager->num_rows_spin, ++ TRUE); + } +- ++ else ++ { ++ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (pager->current_only_radio), ++ TRUE); ++ gtk_widget_set_sensitive (pager->num_rows_spin, ++ FALSE); ++ } ++ + /* Num rows: */ +- g_signal_connect (G_OBJECT (pager->num_rows_spin), "value_changed", +- (GCallback) num_rows_value_changed, pager); ++ g_signal_connect (G_OBJECT (pager->num_rows_spin), ++ "value_changed", ++ (GCallback) num_rows_value_changed, ++ pager); + +- gtk_spin_button_set_value (GTK_SPIN_BUTTON (pager->num_rows_spin), pager->n_rows); +- gtk_label_set_text (GTK_LABEL (pager->label_row_col), pager->orientation == GTK_ORIENTATION_HORIZONTAL ? _("rows") : _("columns")); ++ gtk_spin_button_set_value (GTK_SPIN_BUTTON (pager->num_rows_spin), ++ pager->n_rows); ++ gtk_label_set_text (GTK_LABEL (pager->label_row_col), ++ pager->orientation == GTK_ORIENTATION_HORIZONTAL ? _("rows") : _("columns")); + +- g_signal_connect (pager->properties_dialog, "destroy", ++ g_signal_connect (pager->properties_dialog, ++ "destroy", + G_CALLBACK (properties_dialog_destroyed), + pager); +- g_signal_connect (pager->properties_dialog, "delete_event", ++ g_signal_connect (pager->properties_dialog, ++ "delete_event", + G_CALLBACK (delete_event), + pager); +- g_signal_connect (pager->properties_dialog, "response", ++ g_signal_connect (pager->properties_dialog, ++ "response", + G_CALLBACK (response_cb), + pager); +- +- g_signal_connect (WID ("done_button"), "clicked", +- (GCallback) close_dialog, pager); ++ ++ g_signal_connect (WID ("done_button"), ++ "clicked", ++ (GCallback) close_dialog, ++ pager); + + gtk_spin_button_set_value (GTK_SPIN_BUTTON (pager->num_workspaces_spin), + wnck_screen_get_workspace_count (pager->screen)); +- g_signal_connect (G_OBJECT (pager->num_workspaces_spin), "value_changed", +- (GCallback) num_workspaces_value_changed, pager); +- +- wncklet_connect_while_alive (pager->screen, "workspace_created", +- G_CALLBACK(workspace_created), ++ g_signal_connect (G_OBJECT (pager->num_workspaces_spin), ++ "value_changed", ++ (GCallback) num_workspaces_value_changed, ++ pager); ++ ++ wncklet_connect_while_alive (pager->screen, ++ "workspace_created", ++ G_CALLBACK (workspace_created), + pager, + pager->properties_dialog); + +- wncklet_connect_while_alive (pager->screen, "workspace_destroyed", +- G_CALLBACK(workspace_destroyed), ++ wncklet_connect_while_alive (pager->screen, ++ "workspace_destroyed", ++ G_CALLBACK (workspace_destroyed), + pager, + pager->properties_dialog); + +- g_signal_connect (G_OBJECT (pager->workspaces_tree), "focus_out_event", +- (GCallback) workspaces_tree_focused_out, pager); ++ g_signal_connect (G_OBJECT (pager->workspaces_tree), ++ "focus_out_event", ++ (GCallback) workspaces_tree_focused_out, ++ pager); + +- pager->workspaces_store = gtk_list_store_new (1, G_TYPE_STRING, NULL); ++ pager->workspaces_store = gtk_list_store_new (1, ++ G_TYPE_STRING, ++ NULL); + update_workspaces_model (pager); +- gtk_tree_view_set_model (GTK_TREE_VIEW (pager->workspaces_tree), GTK_TREE_MODEL (pager->workspaces_store)); ++ gtk_tree_view_set_model (GTK_TREE_VIEW (pager->workspaces_tree), ++ GTK_TREE_MODEL (pager->workspaces_store)); + + g_object_unref (pager->workspaces_store); + +- cell = g_object_new (GTK_TYPE_CELL_RENDERER_TEXT, "editable", TRUE, NULL); ++ cell = g_object_new (GTK_TYPE_CELL_RENDERER_TEXT, ++ "editable", ++ TRUE, ++ NULL); + column = gtk_tree_view_column_new_with_attributes ("workspace", + cell, +- "text", 0, ++ "text", ++ 0, + NULL); +- gtk_tree_view_append_column (GTK_TREE_VIEW (pager->workspaces_tree), column); +- g_signal_connect (cell, "edited", +- (GCallback) workspace_name_edited, pager); +- ++ gtk_tree_view_append_column (GTK_TREE_VIEW (pager->workspaces_tree), ++ column); ++ g_signal_connect (cell, ++ "edited", ++ (GCallback) workspace_name_edited, ++ pager); ++ + nr_ws = wnck_screen_get_workspace_count (pager->screen); +- for (i = 0; i < nr_ws; i++) { +- wncklet_connect_while_alive ( +- G_OBJECT (wnck_screen_get_workspace (pager->screen, i)), +- "name_changed", +- G_CALLBACK(workspace_renamed), +- pager, +- pager->properties_dialog); ++ for (i = 0; i < nr_ws; i++) ++ { ++ wncklet_connect_while_alive (G_OBJECT (wnck_screen_get_workspace (pager->screen, ++ i)), ++ "name_changed", ++ G_CALLBACK (workspace_renamed), ++ pager, ++ pager->properties_dialog); + } + + update_properties_for_wm (pager); +Index: gnome-panel-2.27.91/applets/wncklet/workspace-switcher.ui +=================================================================== +--- gnome-panel-2.27.91.orig/applets/wncklet/workspace-switcher.ui 2009-08-26 12:25:06.000000000 +1000 ++++ gnome-panel-2.27.91/applets/wncklet/workspace-switcher.ui 2009-08-26 12:33:28.000000000 +1000 +@@ -20,7 +20,7 @@ + vertical + 12 + +- ++ + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 +@@ -253,6 +253,114 @@ + 1 + + ++ ++ ++ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK ++ True ++ 0 ++ none ++ ++ ++ True ++ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK ++ 12 ++ ++ ++ True ++ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK ++ 6 ++ ++ ++ True ++ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK ++ 2 ++ 2 ++ 6 ++ 6 ++ ++ ++ True ++ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK ++ Co_lumns: ++ True ++ hsize_spin ++ ++ ++ ++ ++ ++ ++ ++ ++ True ++ True ++ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK ++ ++ 1 ++ ++ ++ 1 ++ 2 ++ ++ ++ ++ ++ ++ ++ True ++ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK ++ _Rows: ++ True ++ vsize_spin ++ ++ ++ 1 ++ 2 ++ ++ ++ ++ ++ ++ ++ True ++ True ++ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK ++ ++ 1 ++ ++ ++ 1 ++ 2 ++ 1 ++ 2 ++ ++ ++ ++ ++ ++ ++ False ++ False ++ 0 ++ ++ ++ ++ ++ ++ ++ ++ ++ True ++ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK ++ <b>Workspaces</b> ++ True ++ ++ ++ ++ ++ 2 ++ ++ + + + 1 +Index: gnome-panel-2.27.91/gnome-panel/main.c +=================================================================== +--- gnome-panel-2.27.91.orig/gnome-panel/main.c 2009-04-20 03:45:09.000000000 +1000 ++++ gnome-panel-2.27.91/gnome-panel/main.c 2009-08-26 12:32:09.000000000 +1000 +@@ -86,6 +86,11 @@ + GCONF_CLIENT_PRELOAD_NONE, + NULL); + ++ gconf_client_add_dir (panel_gconf_get_client (), ++ "/apps/compiz/general/screen0/options", ++ GCONF_CLIENT_PRELOAD_NONE, ++ NULL); ++ + panel_global_config_load (); + panel_lockdown_init (); + panel_profile_load (); +@@ -110,6 +115,10 @@ + panel_lockdown_finalize (); + + gconf_client_remove_dir (panel_gconf_get_client (), ++ "/apps/compiz/general/screen0/options", ++ NULL); ++ ++ gconf_client_remove_dir (panel_gconf_get_client (), + "/desktop/gnome/interface", + NULL); + --- gnome-panel-2.27.91.orig/debian/po-up/he.po +++ gnome-panel-2.27.91/debian/po-up/he.po @@ -0,0 +1,83 @@ +# translation of gnome-panel.HEAD.he.po to Hebrew +# translation of gnome-panel.gnome-2-10.he.po to +# translation of gnome-panel.gnome-2-10.he.po to Hebrew +# Copyright (C) 2005 THE PACKAGE'S COPYRIGHT HOLDER. +# Gil 'Dolfin' Osher , 2002-2004. +# Yuval Tanny , 2005. +# +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD.he\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-20 18:37+0300\n" +"Last-Translator: Yair Hershkovitz <>\n" +"Language-Team: Hebrew \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"כרגע אתה מחובר כ-\"%s\".\n" +"תנותק באופן אוטומטי תוך שניה." +msgstr[1] "" +"כרגע אתה מחובר כ-\"%s\".\n" +"תנותק באופן אוטומטי תוך %d שניות." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"כרגע אתה מחובר כ-\"%s\".\n" +"המערכת תכבה באופן אוטומטי תוך שניה." +msgstr[1] "" +"כרגע אתה מחובר כ-\"%s\".\n" +"המערכת תכבה באופן אוטומטי תוך %d שניות." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "להתנתק מהמערכת?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "ה_חלף משתמש" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_התנתק" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "לכבות את המערכת?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "ה_שהה" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "מצב _שינה" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "ה_פעל מחדש" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_כבה" + --- gnome-panel-2.27.91.orig/debian/po-up/fur.po +++ gnome-panel-2.27.91/debian/po-up/fur.po @@ -0,0 +1,82 @@ +# Friulian Translation of gnome-panel. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-10 12:10+0100\n" +"Last-Translator: Massimo Furlani \n" +"Language-Team: FRIULIAN \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-Language: Friulian\n" +"X-Poedit-Country: ITALY\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Cumò si è colegâts come \"%s\".\n" +"La session a vegnarâ sierade automaticamentri podopo %d seconds." +msgstr[1] "" +"Cumò si è colegâts come \"%s\".\n" +"Il sisteme al vegnarâ studât automaticamentri podopo %d seconds." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Cumò si è colegâts come \"%s\".\n" +"Il computer si studarâ automaticamentri podopo %d second." +msgstr[1] "" +"Cumò si è colegâts come \"%s\".\n" +"Il computer si studarâ automaticamentri podopo %d seconds." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Finî cheste session daûrman?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Gambîe utent" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Vâ fûr" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Studâ il sisteme cumò?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "S_ospent" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Iberne" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Torne a inviâ" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Stude" + --- gnome-panel-2.27.91.orig/debian/po-up/oc.po +++ gnome-panel-2.27.91/debian/po-up/oc.po @@ -0,0 +1,73 @@ +# Translation of oc.po to Occitan +# Occitan translation of gnome-panel. +# Copyright (C) 2007 Free Software Foundation, Inc. +# This file is distributed under the same license as the gnome-panel package. +# +# Yannig Marchegay (Kokoyaya) , 2007. +msgid "" +msgstr "" +"Project-Id-Version: oc\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-26 22:55+0100\n" +"Last-Translator: Yannig Marchegay (Kokoyaya) \n" +"Language-Team: Occitan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +msgstr[1] "" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +msgstr[1] "" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Se desconnectar del sistèma ara ?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Cambiar d'utilizaire" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Terminar la session" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Atudar lo sistèma ara ?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Suspendre" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Ibernacion" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "To_rnar lançar" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Atudar" + --- gnome-panel-2.27.91.orig/debian/po-up/pa.po +++ gnome-panel-2.27.91/debian/po-up/pa.po @@ -0,0 +1,88 @@ +# translation of gnome-panel.HEAD.po to Punjabi +# Amanpreet Singh Alam (amanlinux@netscape.net) +# KBST Punjab (kbstpunjab@netscape.net) +# KABHU NAA CHHADE KHAT +# +# +# Amanpreet Singh Alam , 2004, 2005, 2006. +# Amanpreet Singh Alam , 2005, 2006. +# A S Alam , 2006, 2007. +# A S Alam , 2007. +# Amanpreet Singh Alam , 2008. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-19 22:26+0530\n" +"Last-Translator: Amanpreet Singh Alam \n" +"Language-Team: Punjabi/Panjabi \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KAider 0.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"ਤੁਸੀਂ ਹੁਣ \"%s\" ਵਾਂਗ ਲਾਗ ਕੀਤਾ ਹੈ।\n" +"ਤੁਸੀਂ ਆਟੋਮੈਟਿਕ ਹੀ %d ਸਕਿੰਟ ਮਗਰੋਂ ਲਾਗਆਉਟ ਹੋ ਜਾਵੋਗੇ।" +msgstr[1] "" +"ਤੁਸੀਂ ਹੁਣ \"%s\" ਵਾਂਗ ਲਾਗ ਕੀਤਾ ਹੈ।\n" +"ਤੁਸੀਂ ਆਟੋਮੈਟਿਕ ਹੀ %d ਸਕਿੰਟਾਂ ਮਗਰੋਂ ਲਾਗਆਉਟ ਹੋ ਜਾਵੋਗੇ।" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"ਤੁਸੀਂ ਹੁਣ \"%s\" ਵਾਂਗ ਲਾਗ ਕੀਤਾ ਹੈ।\n" +"ਇਹ ਸਿਸਟਮ %d ਸਕਿੰਟ ਮਗਰੋਂ ਆਟੋਮੈਟਿਕ ਹੀ ਬੰਦ ਹੋ ਜਾਵੇਗਾ। " +msgstr[1] "" +"ਤੁਸੀਂ ਹੁਣ \"%s\" ਵਾਂਗ ਲਾਗ ਕੀਤਾ ਹੈ।\n" +"ਇਹ ਸਿਸਟਮ %d ਸਕਿੰਟਾਂ ਮਗਰੋਂ ਆਟੋਮੈਟਿਕ ਹੀ ਬੰਦ ਹੋ ਜਾਵੇਗਾ।" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "ਕੀ ਇਹ ਸਿਸਟਮ ਤੋਂ ਹੁਣੇ ਲਾਗ-ਆਉਟ ਕਰਨਾ ਹੈ?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "ਉਪਭੋਗੀ ਬਦਲੋ(_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "ਲਾਗ-ਆਉਟ(_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "ਕੀ ਇਹ ਸਿਸਟਮ ਹੁਣੇ ਬੰਦ ਕਰਨਾ ਹੈ?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "ਸਸਪੈਂਡ(_u)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "ਹਾਈਬਰਨੇਟ(_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "ਮੁੜ-ਚਾਲੂ(_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "ਬੰਦ ਕਰੋ(_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/bn.po +++ gnome-panel-2.27.91/debian/po-up/bn.po @@ -0,0 +1,80 @@ +# Bangla Translation of Gnome-Panel file. +# Copyright (C) 2005 Free Software Foundation. +# This file is distributed under the same license as the gnome-panel package. +# +# Runa Bhattacharjee, 2005. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2007-07-11 19:17+0530\n" +"Last-Translator: Runa Bhattacharjee \n" +"Language-Team: Bengali (India) \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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"\n" +"\n" +"\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"আপনি বর্তমানে \"%s\" পরিচয়ে লগ-ইন করেছেন।\n" +"%d সেকেন্ড অতিক্রান্ত হলে স্বয়ংক্রিয়রূপে আপনাকে লগ-আউট করা হবে।" +msgstr[1] "" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"আপনি বর্তমানে \"%s\" পরিচয়ে লগ-ইন করেছেন।\n" +"%d সেকেন্ড অতিক্রান্ত হলে স্বয়ংক্রিয়রূপে এই সিস্টেম বন্ধ করা হবে।" +msgstr[1] "" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "সিস্টেম থেকে এই মুহূর্তে লগ-আউট করা হবে কি?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "ব্যবহারকারী পরিবর্তন (_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "প্রস্থান (_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "সিস্টেম এই মুহূর্তে বন্ধ করা হবে কি?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "স্থগিত করুন (_u)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "নিদ্রিত অবস্থা (_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "পুনরাম্ভ (_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "বন্ধ করুন (_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/zh_TW.po +++ gnome-panel-2.27.91/debian/po-up/zh_TW.po @@ -0,0 +1,92 @@ +# Chinese (Taiwan) translation of gnome-panel. +# Copyright (C) 1999-2007 Free Software Foundation, Inc. +# gnome-core: +# Yuan-Chung Cheng , 1999. +# Jing-Jong SHYUE , 2000. +# Chih-Wei Huang , 2000. +# Abel Cheung , 2001-2002. +# gnome-panel: +# Kevin Kee , 2004 +# Abel Cheung , 2002-2004. +# Woodman Tuen , 2005-07 +# +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel 2.21.90\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-09 16:19+0800\n" +"Last-Translator: Woodman Tuen \n" +"Language-Team: Chinese (Taiwan) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"您目前以「%s」登入。\n" +"您會在 %d 秒後自動登出。您目前以「%s」登入。\n" +"您會在 %d 秒後自動登出。" +msgstr[1] "" +"您目前以「%s」登入。\n" +"您會在 %d 秒後自動登出。您目前以「%s」登入。\n" +"您會在 %d 秒後自動登出。" + +#: ../patches/02_panel_logout.patch:674 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"您目前以「%s」登入。\n" +"本系統會在 %d 秒後自動關閉。您目前以「%s」登入。\n" +"本系統會在 %d 秒後自動關閉。" +msgstr[1] "" +"您目前以「%s」登入。\n" +"本系統會在 %d 秒後自動關閉。您目前以「%s」登入。\n" +"本系統會在 %d 秒後自動關閉。" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "現在從本系統中登出?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "切換使用者(_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "登出(_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "現在關閉本系統?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "暫停(_S)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "休眠(_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "重新啟動(_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "關機(_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/uk.po +++ gnome-panel-2.27.91/debian/po-up/uk.po @@ -0,0 +1,87 @@ +# Ukrainian translation of gnome-core module +# Copyright (C) 1999-2002 Free Software Foundation, Inc. +# Yuri Syrota , 1999-2002. +# Maxim Dziumanenko , 2002-2008 +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-07 10:45+0300\n" +"Last-Translator: Maxim Dziumanenko \n" +"Language-Team: Ukrainian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Наразі ви знаходитеся у сеансі як \"%s\".\n" +"Сеанс автоматично завершиться через %d секунду." +msgstr[1] "" +"Наразі ви знаходитеся у сеансі як \"%s\".\n" +"Сеанс автоматично завершиться через %d секунди." +msgstr[2] "" +"Наразі ви знаходитеся у сеансі як \"%s\".\n" +"Сеанс автоматично завершиться через %d секунд." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Наразі ви знаходитеся у сеансі як \"%s\".\n" +"Систему буде автоматично вимкнено через %d секунду." +msgstr[1] "" +"Наразі ви знаходитеся у сеансі як \"%s\".\n" +"Систему буде автоматично вимкнено через %d секунди." +msgstr[2] "" +"Наразі ви знаходитеся у сеансі як \"%s\".\n" +"Систему буде автоматично вимкнено через %d секунд." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Завершити сеанс?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Перемикнути користувача" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Завершити сеанс" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Вимкнути цей комп'ютер?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "Пр_изупинити" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "Режим _сну" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "Перезап_устити" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Вимкнути" + --- gnome-panel-2.27.91.orig/debian/po-up/be.po +++ gnome-panel-2.27.91/debian/po-up/be.po @@ -0,0 +1,89 @@ +# Беларускі пераклад gnome-panel.HEAD. +# SOME DESCRIPTIVE TITLE +# Copyright (C) 2003, 2004 Free Software Foundation, Inc. +# Vital Khilko , 2003. +# Alexander Nyakhaychyk , 2004, 2005, 2008 +# Ihar Hrachyshka , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-10 02:38+0200\n" +"Last-Translator: Alexander Nyakhaychyk \n" +"Language-Team: Belarusian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Зараз вы ўвайшлі як \"%s\".\n" +"Ваш сэанс аўтаматычна завершыцца праз %d сэкунду" +msgstr[1] "" +"Зараз вы ўвайшлі як \"%s\".\n" +"Ваш сэанс аўтаматычна завершыцца праз %d сэкунды" +msgstr[2] "" +"Зараз вы ўвайшлі як \"%s\".\n" +"Ваш сэанс аўтаматычна завершыцца праз %d сэкундаў" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Зараз вы ўвайшлі як \"%s\".\n" +"Сыстэма будзе адключана праз %d сэкунду." +msgstr[1] "" +"Зараз вы ўвайшлі як \"%s\".\n" +"Сыстэма будзе адключана праз %d сэкунды." +msgstr[2] "" +"Зараз вы ўвайшлі як \"%s\".\n" +"Сыстэма будзе адключана праз %d сэкундаў." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Завяршыць сэанс?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "Пера_ключыць карыстальніка" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "В_ыйсьці" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Выключыць кампутар?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "Прыпы_ніць" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Заснуць" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Перазагрузка" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "Вык_лючыць" + --- gnome-panel-2.27.91.orig/debian/po-up/el.po +++ gnome-panel-2.27.91/debian/po-up/el.po @@ -0,0 +1,112 @@ +# translation of el.po to +# translation of el.po to +# translation of el.po to Greek +# gnome-panel Greek PO file. +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# +# simos: 874 messages, 18Feb2001, (sgpbea). +# simos: 897 messages, 01Mar2001, (regmtsgpbea). +# simos: 959 messages, 04Jun2001, (micumple). +# simos: 959 messages, 06Jun2001, (fixed minor typo). +# simos: 897 messages, 28Nov2001, (feeling good to translate HEAD). +# simos: 272 messages, 20Apr2002, 118 messages remaining. +# kostas: 513 messages, 19Oct2002, completed translation. +# kostas: 531 messages, 07Jan2003, updated translation for Gnome 2.1x. +# kostas:update for Gnome 2.4, 49 strings remain 02Jun2003. +# kostas:03Aug2003, 599 messages, updated translation. +# Spiros Papadimitriou , 1999. +# Simos Xenitellis , 1999, 2000, 2001, 2002. +# Sarantis Paskalis , 2000. +# Kostas Papadimas , 2002,2003, 2004, 2005, 2006, 2007, 2008. +# Nikos Charonitakis , 2003, 2004. +# Nikos Charonitakis , 2005. +# Comment: Most of the work done by Spiros (around 600 messages). +# Comment: Simos/Sarantis did 12%. +# Comment: Simos/Sarantis did review. +# Comment: Simos did 10 new/unfuzzy 30. +# Comment: Simos did 3 new/unfuzzy 1. +# Comment: Simos did 2 new/unfuzzy 8. +# Comment: Simos did 6 new/unfuzzy 8. +# Comment: Simos did 2 new/unfuzzy 5. +# Rename of module to gnome-panel. +# Comment: Kostas unfuzzy 1 +# Nikos:29Aug2003, review tranlation +# kostas: 30Oct2003, update translation for Gnome 2.6 +# kostas: 12Nov2003, fixes +# kostas:27Jan2004, update +msgid "" +msgstr "" +"Project-Id-Version: el\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-23 12:38+0200\n" +"Last-Translator: nikosCharonitakis \n" +"Language-Team: Greek \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: KBabel 1.11.4\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Έχετε συνδεθεί ως \"%s\".\n" +"Θα αποσυνδεθείτε αυτόματα σε %d δευτερόλεπτο." +msgstr[1] "" +"Έχετε συνδεθεί ως \"%s\".\n" +"Θα αποσυνδεθείτε αυτόματα σε %d δευτερόλεπτα." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Έχετε συνδεθεί ως \"%s\".\n" +"Το σύστημα θα τερματιστεί αυτόματα σε %d δευτερόλεπτο." +msgstr[1] "" +"Έχετε συνδεθεί ως \"%s\".\n" +"Το σύστημα θα τερματιστεί αυτόματα σε %d δευτερόλεπτα." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Να γίνει αποσύνδεση από το σύστημα τώρα;" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "Α_λλαγή χρήστη" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "Απο_σύνδεση" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Να κλείσει το σύστημα τώρα;" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "Α_ναστολή" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "Α_δρανοποίηση" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Επανεκκίνηση" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Κλείσιμο" + --- gnome-panel-2.27.91.orig/debian/po-up/ku.po +++ gnome-panel-2.27.91/debian/po-up/ku.po @@ -0,0 +1,72 @@ +# translation of gnome-panel.po to Kurdish +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) 2005 THE PACKAGE'S COPYRIGHT HOLDER. +# +# Erdal Ronahi , 2005, 2006. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2006-08-16 21:59+0200\n" +"Last-Translator: ElîxanLoran \n" +"Language-Team: Kurdish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural= n != 1\n" + +#: ../patches/02_panel_logout.patch:663 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "Derketina we ya bixweber piştî %d çirkê pêk tê." +msgstr[1] "Derketina we ya bixweber piştî çirkekê pêk hat." + +#: ../patches/02_panel_logout.patch:674 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "Dê pergal bixweber were girtin piştî %d çirkan" +msgstr[1] "Dê pergal bixweber piştî çirkekê were girtin." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Derketina ji pergal, niha?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "Bikarhêner biguherîne" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Derkeve" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Girtina pergal, niha?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "Bixe _xewê" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Xewa kûr" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Ji nû ve bide dest pê kirin" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Bi tevahî bigire" + --- gnome-panel-2.27.91.orig/debian/po-up/be@latin.po +++ gnome-panel-2.27.91/debian/po-up/be@latin.po @@ -0,0 +1,89 @@ +# Biełaruski pierakład gnome-panel. +# Copyright (C) 2007 THE gnome-panel'S COPYRIGHT HOLDER +# This file is distributed under the same license as the gnome-panel package. +# Alaksandar Navicki , 2007. Łacinka.org +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-21 13:12+0200\n" +"Last-Translator: Ihar Hrachyshka \n" +"Language-Team: i18n@mova.org \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Belarusian latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Ty ŭvajšoŭ jak \"%s\".\n" +"Praz %d sekundu adbudziecca aŭtamatyčny vychad." +msgstr[1] "" +"Ty ŭvajšoŭ jak \"%s\".\n" +"Praz %d sekundy adbudziecca aŭtamatyčny vychad." +msgstr[2] "" +"Ty ŭvajšoŭ jak \"%s\".\n" +"Praz %d sekundaŭ adbudziecca aŭtamatyčny vychad." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Ty ŭvajšoŭ jak \"%s\".\n" +"Kamputar budzie aŭtamatyčna vyklučany praz %d sekundu." +msgstr[1] "" +"Ty ŭvajšoŭ jak \"%s\".\n" +"Kamputar budzie aŭtamatyčna vyklučany praz %d sekundy." +msgstr[2] "" +"Ty ŭvajšoŭ jak \"%s\".\n" +"Kamputar budzie aŭtamatyčna vyklučany praz %d sekundaŭ." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Ci vyjści ciapier?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Pieraklučy karystalnika" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Vyjdzi" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Vyklučyć kamputar ciapier?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Usypi" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernuj" + +# FIXME +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Restartuj" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Vykluč" + --- gnome-panel-2.27.91.orig/debian/po-up/br.po +++ gnome-panel-2.27.91/debian/po-up/br.po @@ -0,0 +1,70 @@ +# Breton translation for gnome-panel +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the gnome-panel package. +# Jérémy Ar Floc'h , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2006-04-12 19:08+0000\n" +"Last-Translator: Jérémy Le Floc'h \n" +"Language-Team: Breton \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ../patches/02_panel_logout.patch:663 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "Diluget e viot a-benn %d eilenn" + +#: ../patches/02_panel_logout.patch:674 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "En em lazhañ a raio ar reizhiad a-benn %d eilenn." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Dilugañ bremañ?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Cheñch implijer" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Dilugañ" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Lazhañ ar reizhiad bremañ?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Adloc'hañ" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Lazhañ" + --- gnome-panel-2.27.91.orig/debian/po-up/POTFILES.in +++ gnome-panel-2.27.91/debian/po-up/POTFILES.in @@ -0,0 +1 @@ +patches/02_panel_logout.patch --- gnome-panel-2.27.91.orig/debian/po-up/it.po +++ gnome-panel-2.27.91/debian/po-up/it.po @@ -0,0 +1,85 @@ +# Italian Translation for gnome-panel +# Copyright (C) 1997-2006 Free Software Foundation, Inc. +# Christopher R. Gabriel +# Alessio Frusciante , 2003 +# Luca Ferretti , 2003-2008 +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel 2.21.x\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-05 09:44+0100\n" +"Last-Translator: Luca Ferretti \n" +"Language-Team: Italiano \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +# GNOME-2-22 +# modificata parecchio.... +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"È stato effettuato l'accesso come «%s».\n" +"La sessione in corso verrà terminata automaticamente entro %d secondo." +msgstr[1] "" +"È stato effettuato l'accesso come «%s».\n" +"La sessione in corso verrà terminata automaticamente entro %d secondi." + +# GNOME-2-22 +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"È stato effettuato l'accesso come «%s».\n" +"Questo sistema verrà arrestato automaticamente entro %d secondo." +msgstr[1] "" +"È stato effettuato l'accesso come «%s».\n" +"Questo sistema verrà arrestato automaticamente entro %d secondi." + +# lo so che c'è system, ma in italiano non ha senso +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Terminare questa sessione adesso?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Cambia utente" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Termina sessione" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Arrestare questo sistema adesso?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Sospendi" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "I_berna" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "Ria_vvia" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "A_rresta" + --- gnome-panel-2.27.91.orig/debian/po-up/hi.po +++ gnome-panel-2.27.91/debian/po-up/hi.po @@ -0,0 +1,84 @@ +# translation of gnome-panel.HEAD.hi.po to Hindi +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# +# G Karunakar , 2003. +# Ravishankar Shrivastava , 2004. +# Rajesh Ranjan , 2005, 2006, 2008. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD.hi\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-10 12:56+0530\n" +"Last-Translator: Rajesh Ranjan \n" +"Language-Team: Hindi \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" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" + +#: ../patches/02_panel_logout.patch:663 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "आप स्वतः %d सेकेंड में लॉग आउट हो जायेंगे." +msgstr[1] "आप स्वतः %d सेकेंड में लॉग आउट हो जायेंगे" + +#: ../patches/02_panel_logout.patch:674 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "सिस्टम %d सेकेंड में स्वतः बंद हो जायेगा" +msgstr[1] "सिस्टम %d सेकेंड में स्वतः बंद हो जायेगा." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "अब इस सिस्टम से लॉग आउट करें?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "उपयोक्ता बदलें (_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "लॉग आउट (_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "अब इस सिस्टम को बंद करें?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "स्थगित करें (_S)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "सुप्तावस्था में ले जायें (_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "फिर आरंभ करें (_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "बंद करें (_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/dz.po +++ gnome-panel-2.27.91/debian/po-up/dz.po @@ -0,0 +1,82 @@ +# Dzongkha translation of gnome-panel. +# Copyright @ 2006 Free Software Foundation, Inc. +# Mindu Dorji. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD.dz\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2007-06-27 03:43+0530\n" +"Last-Translator: Tshewang Norbu \n" +"Language-Team: DZONGKHA \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2;plural=(n!=1);\n" +"X-Poedit-Language: Dzongkha\n" +"X-Poedit-Country: BHUTAN\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"ཁྱོད་ད་ལྟོ་\"%s\".\n" +"བཟུམ་སྦེ་ཕྱིར་བསྐྱོད་འབད་ཡོདཔཁྱོད་སྐར་ཆ་%d ཚུ་ནང་འཁོད་ལུ་ རང་བཞིན་གྱིས་ཕྱིར་བསྐྱོད་འབད་འོང་།" +msgstr[1] "" +"ཁྱོད་ད་ལྟོ་\"%s\".\n" +"བཟུམ་སྦེ་ཕྱིར་བསྐྱོད་འབད་ཡོདཔཁྱོད་སྐར་ཆ་%d ནང་འཁོད་ལུ་ རང་བཞིན་གྱིས་ཕྱིར་བསྐྱོད་འབད་འོང་།" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"ཁྱོད་ད་ལྟོ་\"%s\".\n" +"བཟུམ་སྦེ་ཕྱིར་བསྐྱོད་འབད་ཡོདཔརིམ་ལུགས་འདི་སྐར་ཆ་%d་ཚུནང་ལུ་རང་བཞིན་གྱིས་སྒོ་བསྡམ་འོང་།" +msgstr[1] "" +"ཁྱོད་ད་ལྟོ་\"%s\".\n" +"བཟུམ་སྦེ་ཕྱིར་བསྐྱོད་འབད་ཡོདཔརིམ་ལུགས་འདི་སྐར་ཆ་%dནང་ལུ་རང་བཞིན་གྱིས་སྒོ་བསྡམ་འོང་།" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "རིམ་ལུགས་འདི་ནང་ལས་ ད་ལྟོ་རང་ཕྱིར་བསྐྱོད་འབད་ནི་ཨིན་ན?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "ལག་ལེན་སོར་བསྒྱུར་འབད།(_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "ཕྱིར་བསྐྱོད།(_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "རིམ་ལུགས་འདི་ ད་ལྟོ་རང་སྒོ་བསྡམ་ནི་ཨིན་ན?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "འཕྲལ་བཀག(_u)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "གཉིད་ནང་བཙུགས།(_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "ལོག་འགོ་བཙུགས།(_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "སྒོ་བསྡམས།(_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/lv.po +++ gnome-panel-2.27.91/debian/po-up/lv.po @@ -0,0 +1,77 @@ +# translation of lv.po to Latvian +# Pēteris Krišjānis , 2000. +# Artis Trops , 2000. +# Raivis Dejus , 2006, 2007. +# gnome-panel for Latvian. +# Copyright (C) 2000, 2006, 2007 Free Software Foundation, Inc. +msgid "" +msgstr "" +"Project-Id-Version: lv\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2007-04-05 11:09+0300\n" +"Last-Translator: Raivis Dejus \n" +"Language-Team: Latvian \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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#: ../patches/02_panel_logout.patch:663 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "Jūs tiksiet automātiski atslēgti no sistēmas pēc %d sekundes." +msgstr[1] "Jūs tiksiet automātiski atslēgti no sistēmas pēc %d sekundes." +msgstr[2] "Jūs tiksiet automātiski atslēgti no sistēmas pēc %d sekundes." + +#: ../patches/02_panel_logout.patch:674 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "Sistēma tiks automātiski izslēgta pēc %d sekundes." +msgstr[1] "Sistēma tiks automātiski izslēgta pēc %d sekundes." +msgstr[2] "Sistēma tiks automātiski izslēgta pēc %d sekundes." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Vai tiešām vēlaties atslēgties no sistēmas?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Nomainīt lietotāju" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Beigt darbu" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Vai tiešām vēlaties izslēgt datoru?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "Ie_snaudināt" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Iemidzināt" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "Pā_rstartēt" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "Iz_slēgt" + --- gnome-panel-2.27.91.orig/debian/po-up/ml.po +++ gnome-panel-2.27.91/debian/po-up/ml.po @@ -0,0 +1,84 @@ +# translation of gnome-panel.HEAD.ml.po to +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# +# FSF-India , 2003. +# Ani Peter , 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD.ml\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-10 16:04+0530\n" +"Last-Translator: \n" +"Language-Team: \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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"\n" +"\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"നിങ്ങള്‍ \"%s\" ആയി ലോഗിന്‍ ചെയ്തിരിക്കുന്നു.\n" +"%d സെക്കന്‍ഡിനുളളില്‍ സ്വയം ലോഗൌട്ട് ആകുന്നതാണ്." +msgstr[1] "" +"നിങ്ങള്‍ \"%s\" ആയി ലോഗിന്‍ ചെയ്തിരിക്കുന്നു.\n" +"%d സെക്കന്‍ഡുകള്‍ക്കുള്ളില്‍ സ്വയം ലോഗൌട്ട് ആകുന്നതാണ്." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"നിങ്ങള്‍ \"%s\" ആയി ലോഗിന്‍ ചെയ്തിരിക്കുന്നു.\n" +"%d സെക്കന്‍ഡിനുളളില്‍ സിസ്റ്റം സ്വയം അടച്ചുപൂട്ടുന്നതാണ്." +msgstr[1] "" +"നിങ്ങള്‍ \"%s\" ആയി ലോഗിന്‍ ചെയ്തിരിക്കുന്നു.\n" +"%d സെക്കന്‍ഡുകള്‍ക്കുള്ളില്‍ സിസ്റ്റം സ്വയം അടച്ചുപൂട്ടുന്നതാണ്." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "ഈ സിസ്റ്റത്തില്‍ നിന്നും ഇപ്പോള്‍ പുറത്ത് പോകണമോ?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "മറ്റൊരു യൂസറ്‍ ആകുക (_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "പുറത്ത് പോകുക (_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "ഈ സിസ്റ്റം ഇപ്പോള്‍ അടയ്ക്കണമോ?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "താല്‍ക്കാലികമായി നിര്‍ത്തുക (_u)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "വീണ്ടും ആരംഭിക്കുക (_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "അടച്ചു പൂട്ടുക (_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/ja.po +++ gnome-panel-2.27.91/debian/po-up/ja.po @@ -0,0 +1,88 @@ +# gnome-panel ja.po. +# Copyright (C) 1998-2008 Free Software Foundation, Inc. +# Yukihiro Nakai , 1998 +# Yasuyuki Furukawa , 1999 +# Eiichiro ITANI , 1999 +# Takayuki KUSANO , 1999-2003. +# Yuusuke Tahara , 2000 +# Shingo Akagaki , 2000 +# Akira TAGOH , 2001 +# Takeshi AIHANA , 2003-2008. +# KAMAGASAKO Masatoshi , 2003. +# Satoru SATOH , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel trunk\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-23 13:46+0900\n" +"Last-Translator: Takeshi AIHANA \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"現在 \"%s\" でログインしています。\n" +"%d秒後に自動的にログアウトします。" +msgstr[1] "" +"現在 \"%s\" でログインしています。\n" +"%d秒後に自動的にログアウトします。" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"現在 \"%s\" でログインしています。\n" +"システムは %d秒後に自動的にシャットダウンします。" +msgstr[1] "" +"現在 \"%s\" でログインしています。\n" +"システムは %d秒後に自動的にシャットダウンします。" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "このシステムからログアウトしますか?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "ユーザの切り替え(_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "ログアウト(_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "このシステムをシャットダウンしますか?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "サスペンド(_U)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "ハイバーネート(_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "再起動(_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "シャットダウン(_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/patches.pot +++ gnome-panel-2.27.91/debian/po-up/patches.pot @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +msgstr[1] "" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +msgstr[1] "" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "" --- gnome-panel-2.27.91.orig/debian/po-up/en_GB.po +++ gnome-panel-2.27.91/debian/po-up/en_GB.po @@ -0,0 +1,82 @@ +# English (British) translation of gnome-core +# Copyright (C) 1999-2000 Free Software Foundation, Inc. +# Robert Brady , 1999-2000. +# Gareth Owen , David Lodge , 2004. +# David Lodge , 2008. +# +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-core 1.1.2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-02 18:12+0000\n" +"Last-Translator: Philip Withnall \n" +"Language-Team: English/GB \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgstr[1] "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgstr[1] "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Log out of this system now?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Switch User" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Log Out" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Shut down this system now?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "S_uspend" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernate" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Restart" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Shut Down" + --- gnome-panel-2.27.91.orig/debian/po-up/mn.po +++ gnome-panel-2.27.91/debian/po-up/mn.po @@ -0,0 +1,79 @@ +# translation of mn.po to Mongolian +# translation of gnome-panel.HEAD.po to Mongolian +# translation of gnome-panel.gnome-2-4.po to Mongolian +# translation of gnome-panel.po to mongolian +# This file is distributed under the same license as the PACKAGE package. +# Sukhochir +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# Sanlig Badral , 2003. +# Sanlig Badral , 2003, 2004, 2006. +# Sanlig Badral , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: mn\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2006-08-15 22:00+0200\n" +"Last-Translator: Badral \n" +"Language-Team: Mongolian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: KBabel 1.10.2\n" + +#: ../patches/02_panel_logout.patch:663 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "Та %d секундны дараа автоматаар гарах болно." +msgstr[1] "Та %d секундны дараа автоматаар гарах болно." + +#: ../patches/02_panel_logout.patch:674 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "Энэ систем %d секундны дараа автоматаар унтарна." +msgstr[1] "Энэ систем %d секундны дараа автоматаар унтарна." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Одоо энэ системнээс гарах уу?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Хэрэглэгч сэлгэгч" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Гарах" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Одоо энэ системийг унтраах уу?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Зогсоох" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernate" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Дахин эхлэх" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Унтраах" + --- gnome-panel-2.27.91.orig/debian/po-up/ka.po +++ gnome-panel-2.27.91/debian/po-up/ka.po @@ -0,0 +1,73 @@ +# translation of ka.po to Georgian +# Vladimer Sichinava ვლადიმერ სიჭინავა , 2007, 2008. +msgid "" +msgstr "" +"Project-Id-Version: ka\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-12 22:00+0100\n" +"Last-Translator: Vladimer Sichinava ვლადიმერ სიჭინავა \n" +"Language-Team: Georgian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" +"X-Generator: KBabel 1.11.4\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"მომხმარებელ \"%s\" სესია.\n" +"სესიიდან ავტომატური გასვლა %d წამში." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"მომხმარებელ \"%s\" სესია.\n" +"კომპიუტერი ავტომატურად გამოირთვება %d წამში." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "გნებავთ სესიის მიტოვება?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_მომხმარებლის გადართვა" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "სესიის _დასრულება" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "გნებავთ კომპიუტერის გამორთვა?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_დაყოვნება" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "მძ_ინარე რეჟიმი" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_გადატვირთვა" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "გამორთ_ვა" + --- gnome-panel-2.27.91.orig/debian/po-up/pt_BR.po +++ gnome-panel-2.27.91/debian/po-up/pt_BR.po @@ -0,0 +1,93 @@ +# Brazilian Portuguese translation of gnome-panel. +# Copyright (C) 1999-2007 Free Software Foundation, Inc. +# This file is distributed under the same license as the gnome-panel package. +# Elvis Pfützenreuter +# Sandro Nunes Henrique +# Rodrigo Stulzer Lopes +# Ricardo Soares Guimarães +# Gustavo Maciel Dias Vieira , 2000-2001. +# Alexandre Folle de Menezes , 2002. +# Evandro Fernandes Giovanini , 2002, 2003, 2006. +# Gustavo Noronha Silva , 2003. +# Welther José O. Esteves , 2004. +# Raphael Higino , 2004-2005. +# Evandro Fernandes Giovanini , 2007. +# Og Maciel , 2007. +# Leonardo Ferreira Fontenelle , 2007. +# Vladimir Melo , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-22 10:57-0300\n" +"Last-Translator: Vladimir Melo \n" +"Language-Team: Brazilian Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Você está atualmente registrado como \"%s\".\n" +"Você vai sair da sessão automaticamente em %d segundo." +msgstr[1] "" +"Você está atualmente registrado como \"%s\".\n" +"Você vai sair da sessão automaticamente em %d segundos." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgstr[1] "" +"Você está atualmente registrado como \"%s\".\n" +"Este sistema vai desligar automaticamente em %d segundos." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Sair do sistema agora?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Trocar Usuário" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Sair" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Desligar o sistema agora?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "S_uspender" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernar" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Reiniciar" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Desligar" + --- gnome-panel-2.27.91.orig/debian/po-up/bg.po +++ gnome-panel-2.27.91/debian/po-up/bg.po @@ -0,0 +1,82 @@ +# Bulgarian translation of gnome-panel. +# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. +# Peter Slavov , 2004. +# Rostislav Raykov , 2004. +# Vladimir Petkov , 2004, 2005, 2006, 2007. +# Alexander Shopov , 2006, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel trunk\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2007-07-25 22:39+0300\n" +"Last-Translator: Vladimir Petkov \n" +"Language-Team: Bulgarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"В момента сте се включили като потребителя „%s“.\n" +"Сесията ви ще приключи автоматично след %d секунда." +msgstr[1] "" +"В момента сте се включили като потребителя „%s“.\n" +"Сесията ви ще приключи автоматично след %d секунди." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"В момента сте се включили като потребителя „%s“.\n" +"Компютърът ще спре автоматично след %d секунда." +msgstr[1] "" +"В момента сте се включили като потребителя „%s“.\n" +"Компютърът ще спре автоматично след %d секунди." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Излизане от системата?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Превключване на потребител" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Изход" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Спиране на компютъра?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Приспиване" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Дълбоко приспиване" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Рестартиране" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Спиране на компютъра" + --- gnome-panel-2.27.91.orig/debian/po-up/en_CA.po +++ gnome-panel-2.27.91/debian/po-up/en_CA.po @@ -0,0 +1,74 @@ +# English/Canada translation of gnome-panel. +# Copyright (C) 2004-2006 Adam Weinberger and the GNOME Foundation +# This file is distributed under the same licence as the gnome-panel package. +# Adam Weinberger , 2004, 2005, 2006. +# +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2005-07-18 01:10-0500\n" +"Last-Translator: Adam Weinberger \n" +"Language-Team: Canadian English \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "You will be logged out automatically in %d second." +msgstr[1] "You will be logged out automatically in %d seconds." + +#: ../patches/02_panel_logout.patch:674 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "This system will shut down automatically in %d second." +msgstr[1] "This system will shut down automatically in %d seconds." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Log out of this system now?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Switch User" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Log Out" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Shut down this system now?" + +#: ../patches/02_panel_logout.patch:782 +#, fuzzy +msgid "S_uspend" +msgstr "_Suspend" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Shut Down" + --- gnome-panel-2.27.91.orig/debian/po-up/ru.po +++ gnome-panel-2.27.91/debian/po-up/ru.po @@ -0,0 +1,91 @@ +# translation of gnome-panel to Russian +# Copyright (C) 1998-2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. +# +# Max Valianskiy , 1998-1999. +# Sergey Panov , 1999. +# Valek Filippov , 2000-2002. +# Dmitry G. Mastrukov , 2002-2004. +# Andrew W. Nosenko , 2003. +# Leonid Kanter , 2003, 2004, 2005, 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel trunk\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-09 00:06+0300\n" +"Last-Translator: Vasiliy Faronov \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Сейчас идёт сеанс пользователя «%s».\n" +"Он будет автоматически завершён через %d секунду." +msgstr[1] "" +"Сейчас идёт сеанс пользователя «%s».\n" +"Он будет автоматически завершён через %d секунды." +msgstr[2] "" +"Сейчас идёт сеанс пользователя «%s».\n" +"Он будет автоматически завершён через %d секунд." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Сейчас идёт сеанс пользователя «%s».\n" +"Компьютер будет автоматически выключен через %d секунду." +msgstr[1] "" +"Сейчас идёт сеанс пользователя «%s».\n" +"Компьютер будет автоматически выключен через %d секунды." +msgstr[2] "" +"Сейчас идёт сеанс пользователя «%s».\n" +"Компьютер будет автоматически выключен через %d секунд." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Завершить сеанс?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Сменить пользователя" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Завершить сеанс" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Выключить этот компьютер?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Ждущий режим" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Спящий режим" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Перезагрузить" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Выключить" + --- gnome-panel-2.27.91.orig/debian/po-up/ko.po +++ gnome-panel-2.27.91/debian/po-up/ko.po @@ -0,0 +1,75 @@ +# gnome-panel +# Sung-Hyun Nam , 2000. +# Young-Ho Cha , 2000, 2001, 2006, 2007. +# Eunju Kim , 2007. +# Changwoo Ryu , 1998, 2002-2006, 2007, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-26 18:51+0900\n" +"Last-Translator: Changwoo Ryu \n" +"Language-Team: GNOME Korea \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"\"%s\" 사용자로 로그인한 상태입니다.\n" +"%d초 후에 자동으로 로그아웃합니다." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"\"%s\" 사용자로 로그인한 상태입니다.\n" +"%d초 후에 자동으로 시스템이 꺼집니다." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "시스템에서 지금 로그아웃 하겠습니까?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "사용자 바꾸기(_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "로그아웃(_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "시스템을 지금 끄겠습니까?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "일시 중지(_U)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "최대 절전(_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "다시 시작(_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "시스템 종료(_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/sr@latin.po +++ gnome-panel-2.27.91/debian/po-up/sr@latin.po @@ -0,0 +1,92 @@ +# Serbian translation of gnome-panel +# Courtesy of Prevod.org team (http://prevod.org/) -- 2003, 2004, 2005, 2006. +# +# This file is distributed under the same license as the gnome-panel package. +# +# Maintainer: Danilo Šegan +# Reviewed on 2004-02-25 by: Danilo Šegan and Bojan Suzic +# Reviewed on 2005-03-02 by: Danilo Šegan +# Reviewed on 2005-07-29 by: Slobodan D. Sredojević +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2007-09-10 22:23+0200\n" +"Last-Translator: Danilo Šegan \n" +"Language-Team: Serbian (sr) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Trenutno ste prijavljeni kao „%s“.\n" +"Bićete odjavljeni u roku od %d sekunde." +msgstr[1] "" +"Trenutno ste prijavljeni kao „%s“.\n" +"Bićete odjavljeni u roku od %d sekunde." +msgstr[2] "" +"Trenutno ste prijavljeni kao „%s“.\n" +"Bićete odjavljeni u roku od %d sekundi." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Trenutno ste prijavljeni kao „%s“.\n" +"Ovaj računar će biti ugašen u roku od %d sekunde." +msgstr[1] "" +"Trenutno ste prijavljeni kao „%s“.\n" +"Ovaj računar će biti ugašen u roku od %d sekunde." +msgstr[2] "" +"Trenutno ste prijavljeni kao „%s“.\n" +"Ovaj računar će biti ugašen u roku od %d sekundi." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Odjavljujete se sada sa sistema?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "Pro_meni korisnika" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "O_djavi se" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Da li ste sigurni da sada želite da ugasite računar?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "Privremeno _zaustavi" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "Z_amrzni" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "Ponovo pok_reni" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Ugasi" + --- gnome-panel-2.27.91.orig/debian/po-up/cs.po +++ gnome-panel-2.27.91/debian/po-up/cs.po @@ -0,0 +1,94 @@ +# Czech translation of gnome-panel. +# Copyright (C) 1999, 2006, 2007, 2008 Free Software Foundation, Inc. +# Copyright (C) 2004, 2005, 2006 Miloslav Trmac . +# This file is distributed under the same license as the gnome-panel package. +# GIS , 1999. +# David Šauer , 1999. +# George Lebl , 2000, 2001. +# Stanislav Brabec , 2000, 2001. +# Miloslav Trmac , 2002, 2003, 2004, 2005, 2006. +# Petr Tomeš , 2006. +# Jakub Friedl , 2006, 2007. +# Petr Kovar , 2007, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-03 22:21+0100\n" +"Last-Translator: Petr Kovar \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Aktuálně jste přihlášeni jako \"%s\".\n" +"Budete automaticky odhlášeni za %d sekundu." +msgstr[1] "" +"Aktuálně jste přihlášeni jako \"%s\".\n" +"Budete automaticky odhlášeni za %d sekundy." +msgstr[2] "" +"Aktuálně jste přihlášeni jako \"%s\".\n" +"Budete automaticky odhlášeni za %d sekund." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Aktuálně jste přihlášeni jako \"%s\".\n" +"Tento systém se automaticky vypne za %d sekundu." +msgstr[1] "" +"Aktuálně jste přihlášeni jako \"%s\".\n" +"Tento systém se automaticky vypne za %d sekundy." +msgstr[2] "" +"Aktuálně jste přihlášeni jako \"%s\".\n" +"Tento systém se automaticky vypne za %d sekund." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Odhlásit se z tohoto systému?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Přepnout uživatele" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Odhlásit se" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Vypnout tento systém?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Uspat do RAM" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "Uspat na _disk" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Restartovat" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Vypnout" + --- gnome-panel-2.27.91.orig/debian/po-up/sk.po +++ gnome-panel-2.27.91/debian/po-up/sk.po @@ -0,0 +1,92 @@ +# translation of sk.po to Slovak +# Copyright (C) 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc. +# +# $Id: sk.po,v 1.159 2005/12/05 23:29:40 marcel Exp $ +# +# Stanislav Višňovský , 2002. +# Stanislav Visnovsky , 2003, 2004. +# Stanislav Visnovsky , 2003. +# Peter Tuharsky , 2007. +# Marcel Telka , 2005, 2007. +# Pavol Šimo , 2007. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-03 16:36+0100\n" +"Last-Translator: Pavol Šimo \n" +"Language-Team: Slovak \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural= (n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Momentálne ste prihlásený ako \"%s\".\n" +"Budete automaticky odhlásený o %d sekúnd." +msgstr[1] "" +"Momentálne ste prihlásený ako \"%s\".\n" +"Budete automaticky odhlásený o %d sekundu." +msgstr[2] "" +"Momentálne ste prihlásený ako \"%s\".\n" +"Budete automaticky odhlásený o %d sekundy." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Momentálne ste prihlásený ako \"%s\".\n" +"Tento systém sa automaticky vypne o %d sekúnd." +msgstr[1] "" +"Momentálne ste prihlásený ako \"%s\".\n" +"Tento systém sa automaticky vypne o %d sekundu." +msgstr[2] "" +"Momentálne ste prihlásený ako \"%s\".\n" +"Tento systém sa automaticky vypne o %d sekundy." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Odhlásiť sa teraz zo systému?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Prepnúť používateľa" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Odhlásiť" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Vypnúť systém teraz?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Uspať" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernovať" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Reštartovať" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Vypnúť" + --- gnome-panel-2.27.91.orig/debian/po-up/sr.po +++ gnome-panel-2.27.91/debian/po-up/sr.po @@ -0,0 +1,92 @@ +# Serbian translation of gnome-panel +# Courtesy of Prevod.org team (http://prevod.org/) -- 2003, 2004, 2005, 2006. +# +# This file is distributed under the same license as the gnome-panel package. +# +# Maintainer: Данило Шеган +# Reviewed on 2004-02-25 by: Данило Шеган and Bojan Suzic +# Reviewed on 2005-03-02 by: Данило Шеган +# Reviewed on 2005-07-29 by: Слободан Д. Средојевић +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2007-09-10 22:23+0200\n" +"Last-Translator: Данило Шеган \n" +"Language-Team: Serbian (sr) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Тренутно сте пријављени као „%s“.\n" +"Бићете одјављени у року од %d секунде." +msgstr[1] "" +"Тренутно сте пријављени као „%s“.\n" +"Бићете одјављени у року од %d секунде." +msgstr[2] "" +"Тренутно сте пријављени као „%s“.\n" +"Бићете одјављени у року од %d секунди." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Тренутно сте пријављени као „%s“.\n" +"Овај рачунар ће бити угашен у року од %d секунде." +msgstr[1] "" +"Тренутно сте пријављени као „%s“.\n" +"Овај рачунар ће бити угашен у року од %d секунде." +msgstr[2] "" +"Тренутно сте пријављени као „%s“.\n" +"Овај рачунар ће бити угашен у року од %d секунди." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Одјављујете се сада са система?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "Про_мени корисника" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "О_дјави се" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Да ли сте сигурни да сада желите да угасите рачунар?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "Привремено _заустави" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "З_амрзни" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "Поново пок_рени" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Угаси" + --- gnome-panel-2.27.91.orig/debian/po-up/or.po +++ gnome-panel-2.27.91/debian/po-up/or.po @@ -0,0 +1,80 @@ +# translation of gnome-panel.HEAD.or.po to Oriya +# translation of or.po to Oriya +# Oriya translation of gnome-panel.HEAD.pot.. +# Copyright (C) 2004, 2006, Free Software Foundation, Inc. +# This file is distributed under the same license as the gnome-panel package +# $Id: or.po,v 1.13 2006/09/05 10:10:06 sbehera Exp $ +# Sakti/Gita , 2004. +# Gora Mohanty , 2004, 2006. +# Subhransu Behera , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD.or\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2006-09-05 15:33+0530\n" +"Last-Translator: Subhransu Behera \n" +"Language-Team: Oriya \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: Plural-Forms: nplurals=2; plural=(n!=1);\n" +"\n" +"\n" +"X-Generator: KBabel 1.9.1\n" + +#: ../patches/02_panel_logout.patch:663 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "ଆପଣଙ୍କୁ %d ସେକଣ୍ଡରେ ଆପେଆପେ ଲଗ ଆଉଟ କରାଦିଆଯିବ." +msgstr[1] "ଆପଣଙ୍କୁ %d ସେକଣ୍ଡରେ ଆପେଆପେ ଲଗ ଆଉଟ କରାଦିଆଯିବ।" + +#: ../patches/02_panel_logout.patch:674 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "ଏହି ତନ୍ତ୍ର %d ସେକଣ୍ଡରେ ଆପେଆପେ ବନ୍ଦ କରାଯିବ." +msgstr[1] "ଏହି ତନ୍ତ୍ର %d ସେକଣ୍ଡରେ ଆପେଆପେ ବନ୍ଦ କରାଯିବ।" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "ଏହି ତନ୍ତ୍ରରୁ ବର୍ତ୍ତମାନ ଲଗ ଆଉଟ କରବେ କି?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "ବ୍ଯବହାରକାରୀ ବଦଳାନ୍ତୁ (_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "ଲଗ ଆଉଟ (_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "ଏହି ତନ୍ତ୍ରରୁ ବର୍ତ୍ତମାନ ବନ୍ଦ କରାଦିଆଯିବ କି?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "ସ୍ଥଗିତ କରନ୍ତୁ (_u)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "ନିଭ୍ରୁତ ଅବସ୍ଥାରେ ରଖନ୍ତୁ (_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "ପୁନଃପ୍ରାରମ୍ଭ (_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "ବନ୍ଦ କରନ୍ତୁ (_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/mk.po +++ gnome-panel-2.27.91/debian/po-up/mk.po @@ -0,0 +1,96 @@ +# translation of mk.po to Macedonian +# translation of gnome-panel.HEAD.mk.po to +# translation of gnome-panel.HEAD.mk.po to +# translation of gnome-panel.HEAD.mk.po to +# Copyright (C) 2002,2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# +# Дамјан Георгиевски, 2002. +# Ivan Stojmirov , 2002,2003. +# Arangel Angov , 2003, 2004, 2006, 2008. +# Jovan Kostovski , 2003. +# Dushan Vasilevski-DUVIX , 2003. +# Арангел Ангов , 2005. +# Jovan Naumovski , 2006, 2007, 2008. +# Arangel Angov , 2007. +msgid "" +msgstr "" +"Project-Id-Version: mk\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-23 19:15+0100\n" +"Last-Translator: Arangel Angov \n" +"Language-Team: Macedonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural= n==1 || n%10==1 ? 0 : 1\n" +"X-Generator: KBabel 1.11.4\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Моментално сте најавени како „%s“.\n" +"Ќе бидете автоматски одјавени за %d секунда." +msgstr[1] "" +"Моментално сте најавени како „%s“.\n" +"Ќе бидете автоматски одјавени за %d секунди." +msgstr[2] "" +"Моментално сте најавени како „%s“.\n" +"Ќе бидете автоматски одјавени за %d секунди." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Моментално сте најавени како „%s“.\n" +"Системот ќе се исклучи автоматски за %d секунда." +msgstr[1] "" +"Моментално сте најавени како „%s“.\n" +"Системот ќе се исклучи автоматски за %d секунди." +msgstr[2] "" +"Моментално сте најавени како „%s“.\n" +"Системот ќе се исклучи автоматски за %d секунди." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Да се одјавам од системот веднаш?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Смени корисник" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Одјави се" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Да го исклучам системот веднаш?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "С_успендирај" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Хибернирај" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Рестартирај" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Исклучи" + --- gnome-panel-2.27.91.orig/debian/po-up/tr.po +++ gnome-panel-2.27.91/debian/po-up/tr.po @@ -0,0 +1,81 @@ +# translation of gnome-panel.HEAD.tr.po to Turkish +# translation of gnome-panel to Turkish +# +# Copyright (C) 2001-2005, 2008 Free Software Foundation, Inc. +# +# Fatih Demir , 2000. +# Görkem Çetin , 2003. +# Baris Cicek , 2004, 2005, 2008. +# Seha İslam , 2005. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD.tr\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-10 13:11+0200\n" +"Last-Translator: Baris Cicek \n" +"Language-Team: Turkish \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" +"X-Poedit-Language: Turkish\n" +"X-Poedit-Country: TURKEY\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Şu an \"%s\" olarak giriş yapmış bulunuyorsunuz.\n" +"Kendiliğinden %d saniye içereisinde çıkış yapacaksınız." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Şu an \"%s\" olarak giriş yapmış bulunuyorsunuz.\n" +"Bu sistem kendisini %d saniye sonra kendiliğinden kapatacak." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Bu sistemden şimdi çıkış yapmak istiyor musunuz?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Kullanıcı Değiştir" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "Çı_kış" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Bu sistem şimdi kapatılsın mı?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Bekleme Kipi" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Uyku Kipi" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Yeniden Başlat" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Kapat" + --- gnome-panel-2.27.91.orig/debian/po-up/gu.po +++ gnome-panel-2.27.91/debian/po-up/gu.po @@ -0,0 +1,94 @@ +# translation of gnome-panel.HEAD.gu.po to Gujarati +# Ankit Patel , 2005, 2006. +# Ankit Patel , 2007. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD.gu\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2007-08-06 17:45+0530\n" +"Last-Translator: Ankit Patel \n" +"Language-Team: Gujarati \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" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" +"\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"તમે વર્તમાનમાં \"%s\" તરીકે પ્રવેશેલ છો.\n" +"તમે %d સેકન્ડમાં આપોઆપ બહાર નીકળી જશો." +msgstr[1] "" +"તમે વર્તમાનમાં \"%s\" તરીકે પ્રવેશેલ છો.\n" +"તમે %d સેકન્ડોમાં આપોઆપ બહાર નીકળી જશો." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"તમે વર્તમાનમાં \"%s\" તરીકે પ્રવેશેલ છો.\n" +"સિસ્ટમ %d સેકન્ડમાં આપોઆપ બંધ થઈ જશે." +msgstr[1] "" +"તમે વર્તમાનમાં \"%s\" તરીકે પ્રવેશેલ છો.\n" +"સિસ્ટમ %d સેકન્ડોમાં આપોઆપ બંધ થઈ જશે." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "શું આ સિસ્ટમમાંથી હમણાં બહાર નીકળવું છે?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "વપરાશકર્તા બદલો (_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "બહાર નીકળો (_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "શું આ સિસ્ટમ હમણાં બંધ કરવી છે?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "અટકાવો (_u)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "હાયબરનેટ (_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "પુનઃશરૂ કરો (_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "બંધ કરો (_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/ca.po +++ gnome-panel-2.27.91/debian/po-up/ca.po @@ -0,0 +1,82 @@ +# gnome-panel translation to Catalan. +# Copyright © 2000-2007 Free Software Foundation, Inc. +# Ivan Vilata i Balaguer , 2000. +# Softcatalà , 2000. +# Jordi Mallach , 2002, 2003, 2004, 2005, 2006. +# Josep Puigdemont i Casamajó , 2006, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel 2.11.92\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-23 02:24+0100\n" +"Last-Translator: Jordi Mallach \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Heu entrat com a «%s».\n" +"Sortireu automàticament d'aquí a %d segon." +msgstr[1] "" +"Heu entrat com a «%s».\n" +"Sortireu automàticament d'aquí a %d segons." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Heu entrat com a «%s».\n" +"Aquest ordinador s'aturarà automàticament d'aquí a %d segon." +msgstr[1] "" +"Heu entrat com a «%s».\n" +"Aquest ordinador s'aturarà automàticament d'aquí a %d segons." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Voleu sortir d'aquest ordindor?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Commuta d'usuari" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "S_urt" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Voleu aturar aquest ordinador?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "Atura _temporalment" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hiberna" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Reinicia" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "A_tura" + --- gnome-panel-2.27.91.orig/debian/po-up/gl.po +++ gnome-panel-2.27.91/debian/po-up/gl.po @@ -0,0 +1,88 @@ +# translation of gl.po to Galego +# Galician translation of gnome-panel. +# Copyright (C) 1999-2004 Jesús Bravo Álvarez +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en http://www.trasno.net +# +# First Version: 2002-06-02 18:57+0200 +# +# Jesús Bravo Álvarez , 1999-2004. +# Ignacio Casal Quinteiro , 2005, 2006. +# Ignacio Casal Quinteiro , 2007, 2008. +msgid "" +msgstr "" +"Project-Id-Version: gl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-20 14:24+0100\n" +"Last-Translator: Ignacio Casal Quinteiro \n" +"Language-Team: Galego \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n!=1)\n" +"X-Generator: KBabel 1.11.4\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Está actualmente conectado como \"%s\".\n" +"A súa sesión terminará automaticamente en %d segundo." +msgstr[1] "" +"Está actualmente conectado como \"%s\".\n" +"A súa sesión terminará automaticamente en %d segundos." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Está actualmente conectado como \"%s\".\n" +"O sistema apagarase automaticamente en %d segundo." +msgstr[1] "" +"Está actualmente conectado como \"%s\".\n" +"O sistema apagarase automaticamente en %d segundos." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Quere terminar a sesión neste sistema agora?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Cambiar de usuario" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Terminar a sesión" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Quere apagar este sistema agora?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "S_uspender" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernar" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Reiniciar" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "A_pagar" + --- gnome-panel-2.27.91.orig/debian/po-up/si.po +++ gnome-panel-2.27.91/debian/po-up/si.po @@ -0,0 +1,81 @@ +# translation of si.po to Sinhala +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Danishka Navin , 2007. +msgid "" +msgstr "" +"Project-Id-Version: si\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2007-08-16 17:05+0530\n" +"Last-Translator: Danishka Navin \n" +"Language-Team: Sinhala \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: KBabel 1.11.4\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"ඔබ දැනට පිවිසී ඇත්තේ \"%s\" ලෙසයි.\n" +"තවත් තත්පර %d ක් තුළ ඔබ ස්වයංක්‍රීයව ඉවත් වනු ලැබේ." +msgstr[1] "" +"ඔබ දැනට පිවිසී ඇත්තේ \"%s\" ලෙසයි.\n" +"තවත් තත්පර %d ක් තුළ ඔබ ස්වයංක්‍රීයව ඉවත් වනු ලැබේ." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"ඔබ දැනට පිවිසී ඇත්තේ \"%s\" ලෙසයි.\n" +"තවත් තත්පර %d ක් තුළ මෙම පද්ධතිය ස්වයංක්‍රීයව වසා දමනු ලැබේ." +msgstr[1] "" +"ඔබ දැනට පිවිසී ඇත්තේ \"%s\" ලෙසයි.\n" +"තවත් තත්පර %d ක් තුළ මෙම පද්ධතිය ස්වයංක්‍රීයව වසා දමනු ලැබේ." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "මෙම පද්ධතියෙන් දැන් ඉවත්වනවාද?දැන් පද්ධතියෙන් ඉවත් වීමට අවශ්‍යද?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "පරිශිලක හුවමාරුව (_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "ඉවත් වීම (_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "දැන් පද්ධතිය වසා දැමීමට අවශ්‍යද?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "අත්හිටු වන්න (_u)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "ශිශිර තරණය (_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "යළි ආරම්ඹ කරන්න (_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "වසා දමන්න (_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/th.po +++ gnome-panel-2.27.91/debian/po-up/th.po @@ -0,0 +1,80 @@ +# Thai translation of gnome-panel. +# Copyright (C) 2004-2008 Free Software Foundation, Inc. +# This file is distributed under the same license as the gnome-panel package. +# +# Supphachoke Suntiwichaya , 2003. +# Chatchawarn Hansakunbuntheung , 2003, 2004. +# Supranee Thirawatthanasuk , 2004. +# Chanchai Junlouchai , 2004. +# Paisa Seeluangsawat , 2004. +# Theppitak Karoonboonyanan , 2004-2008. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-28 08:16+0700\n" +"Last-Translator: Theppitak Karoonboonyanan \n" +"Language-Team: Thai \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"คุณกำลังเข้าระบบในชื่อ \"%s\"\n" +"คุณจะออกจากระบบโดยอัตโนมัติภายใน %d วินาที" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"คุณกำลังเข้าระบบในชื่อ \"%s\"\n" +"ระบบจะปิดโดยอัตโนมัติภายใน %d วินาที" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "จะออกจากระบบหรือไม่?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_สลับผู้ใช้" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_ออกจากระบบ" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "จะปิดเครื่องหรือไม่?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_พักเครื่อง" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_จำศีลเครื่อง" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "เ_ริ่มเปิดเครื่องใหม่" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_ปิดเครื่อง" + --- gnome-panel-2.27.91.orig/debian/po-up/es.po +++ gnome-panel-2.27.91/debian/po-up/es.po @@ -0,0 +1,93 @@ +# translation of gnome-panel.HEAD.po to Español +# translation of gnome-panel to Spanish +# Copyright © 1998-2003, 2006, 2007, 2008 Free Software Foundation, Inc. +# +# Miguel de Icaza,computo,622-4680 1998. +# Germán Poo Caamaño , 2002 (Revisor). +# Pablo Gonzalo del Campo, 2003. +# Juan Manuel García Molina , 2003. +# Yelitza Louze , 2003. +# Francisco Javier F. Serrador , 2003, 2004, 2005, 2006. +# Jorge González , 2007, 2008. +# Pablo Saratxaga 1999-2000. +# Javier Gómez 2000. +# Juanjo Alvarez 2000. +# Ismael Olea 2000. +# Manuel de Vega Barreiro 2000. +# Juan Manuel García Molina 2001-2002. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-03 23:05+0100\n" +"Last-Translator: Jorge González \n" +"Language-Team: Español \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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Actualmente está registrado en la sesión como «%s».\n" +"Su sesión se cerrará automáticamente en %d segundo." +msgstr[1] "" +"Actualmente está registrado en la sesión como «%s».\n" +"Su sesión se cerrará automáticamente en %d segundos." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Actualmente está registrado en la sesión como «%s».\n" +"Este sistema se apagará automáticamente en %d segundo." +msgstr[1] "" +"Actualmente está registrado en la sesión como «%s».\n" +"Este sistema se apagará automáticamente en %d segundos." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "¿Desea salir de este sistema ahora?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Cambiar usuario" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Salir" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "¿Desea apagar este sistema ahora?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Suspender" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernar" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Reiniciar" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Apagar" + --- gnome-panel-2.27.91.orig/debian/po-up/ga.po +++ gnome-panel-2.27.91/debian/po-up/ga.po @@ -0,0 +1,102 @@ +# Irish translations for gnome-panel package. +# Copyright (C) 2000, 2004, 2007 Free Software Foundation, Inc. +# Seán Ó Ceallaigh , 2000. +# Paul Duffy , 2003. +# David O'Callaghan , 2003. +# Alastair McKinstry , 2004. +# Seán de Búrca , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel HEAD\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2007-12-24 20:11-0700\n" +"Last-Translator: Seán de Búrca \n" +"Language-Team: Irish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=n==1 ? 0 : (n%10==1 || n%10==2) ? 1 : (n%" +"10>=3 && n%10<= 6) ? 2 : ((n%10>=7 && n%10<=9) || n==10) ? 3 : 4;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Tá tú logáilte isteach mar \"%s\" faoi láthair.\n" +"Logálfar tú amach go huathoibríoch i gceann soicind." +msgstr[1] "" +"Tá tú logáilte isteach mar \"%s\" faoi láthair.\n" +"Logálfar tú amach go huathoibríoch i gceann %d shoicind." +msgstr[2] "" +"Tá tú logáilte isteach mar \"%s\" faoi láthair.\n" +"Logálfar tú amach go huathoibríoch i gceann %d shoicind." +msgstr[3] "" +"Tá tú logáilte isteach mar \"%s\" faoi láthair.\n" +"Logálfar tú amach go huathoibríoch i gceann %d soicind." +msgstr[4] "" +"Tá tú logáilte isteach mar \"%s\" faoi láthair.\n" +"Logálfar tú amach go huathoibríoch i gceann %d soicind." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Tá tú logáilte isteach mar \"%s\" faoi láthair.\n" +"Múchfar an córas seo go huathoibríoch i gceann soicind." +msgstr[1] "" +"Tá tú logáilte isteach mar \"%s\" faoi láthair.\n" +"Múchfar an córas seo go huathoibríoch i gceann %d shoicind." +msgstr[2] "" +"Tá tú logáilte isteach mar \"%s\" faoi láthair.\n" +"Múchfar an córas seo go huathoibríoch i gceann %d shoicind." +msgstr[3] "" +"Tá tú logáilte isteach mar \"%s\" faoi láthair.\n" +"Múchfar an córas seo go huathoibríoch i gceann %d soicind." +msgstr[4] "" +"Tá tú logáilte isteach mar \"%s\" faoi láthair.\n" +"Múchfar an córas seo go huathoibríoch i gceann %d soicind." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Logáil amach as an gcóras seo anois?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "Ai_strigh Úsáideoir" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Logáil Amach" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Múch an córas seo anois?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "C_uir ar Fionraí" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "Geim_hrigh" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Atosaigh" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Múch" + --- gnome-panel-2.27.91.orig/debian/po-up/ar.po +++ gnome-panel-2.27.91/debian/po-up/ar.po @@ -0,0 +1,98 @@ +# translation of gnome-panel.HEAD.ar.po to Arabic +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER +# +# Sayed Jaffer Al-Mosawi , 2002. +# Abdulaziz Al-Arfaj , 2004. +# Djihed Afifi , 2006. +# Khaled Hosny , 2006, 2007. +# Anas Husseini , 2007. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.gnome-2-16\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-26 10:12+0100\n" +"Last-Translator: Djihed Afifi \n" +"Language-Team: Arabic \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" +"Plural-Forms: Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n>=3 && " +"n<=10 ? 2 : 3\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"أنت سجلت دخولك تحت اسم \"%s\".\n" +"سيتم تسجيل الخروج آلياً في ثانية." +msgstr[1] "" +"أنت سجلت دخولك تحت اسم \"%s\".\n" +"سيتم تسجيل الخروج آلياً في ثانيتين." +msgstr[2] "" +"أنت سجلت دخولك تحت اسم \"%s\".\n" +"سيتم تسجيل الخروج آلياً في %d ثوان." +msgstr[3] "" +"أنت سجلت دخولك تحت اسم \"%s\".\n" +"سيتم تسجيل الخروج آلياً في %d ثانية." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"أنت سجلت دخولك تحت اسم \"%s\".\n" +"سيتم إطفاء النظام آلياً في ثانية." +msgstr[1] "" +"أنت سجلت دخولك تحت اسم \"%s\".\n" +"سيتم إطفاء النظام آلياً في ثانيتين." +msgstr[2] "" +"أنت سجلت دخولك تحت اسم \"%s\".\n" +"سيتم إطفاء النظام آلياً في %d ثوان." +msgstr[3] "" +"أنت سجلت دخولك تحت اسم \"%s\".\n" +"سيتم إطفاء النظام آلياً في %d ثانية." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "هل تريد تسجيل الخروج من النظام الآن؟" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_بدّل المستخدم" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_سجّل خروج" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "غلق النظام الآن؟" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_علّق" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "أ_سبِت" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "أ_عد التشغيل" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "أ_طفيء" + --- gnome-panel-2.27.91.orig/debian/po-up/sq.po +++ gnome-panel-2.27.91/debian/po-up/sq.po @@ -0,0 +1,82 @@ +# Përkthimi i mesazheve të gnome-panel në shqip +# Copyright (C) 2006, 2008 Free Software Foundation, Inc. +# This file is distributed under the same license as the gnome-panel package. +# +# +# Elian Myftiu , 2003-2007. +# Laurent Dhima , 2008. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel HEAD\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-01-15 11:42+0100\n" +"Last-Translator: Laurent Dhima \n" +"Language-Team: albanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Aktualisht jeni futur si \"%s\".\n" +"Do të dilni jashtë automatikisht në %d sekondë." +msgstr[1] "" +"Aktualisht jeni futur si \"%s\".\n" +"Do të dilni jashtë automatikisht në %d sekonda." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Aktualisht jeni futur si \"%s\".\n" +"Ky sistem do shuhet automatikisht në %d sekondë." +msgstr[1] "" +"Aktualisht jeni futur si \"%s\".\n" +"Ky sistem do shuhet automatikisht në %d sekonda." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Del jashtë sistemit tani?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Shkëmbe përdorues" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Dil jashtë" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Shuan sistemin tani?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "P_ezullo" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Ngri" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Rinis" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Shuaj" + --- gnome-panel-2.27.91.orig/debian/po-up/eu.po +++ gnome-panel-2.27.91/debian/po-up/eu.po @@ -0,0 +1,83 @@ +# translation of eu.po to Basque +# Copyright (C) 1999, 2004, 2006, 2007, 2008 Free Software Foundation, Inc. +# +# Joseba Bidaurrazaga van Dierdonck , 2000. +# Hizkuntza Politikarako Sailburuordetza , 2004. +# Iñaki Larrañaga Murgoitio , 2004, 2005, 2006, 2007, 2008. +# Iñaki Larrañaga Murgoitio , 2007. +msgid "" +msgstr "" +"Project-Id-Version: eu\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-28 20:41+0100\n" +"Last-Translator: Iñaki Larrañaga Murgoitio \n" +"Language-Team: Basque \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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Unean \"%s\" gisa hasi duzu saioa.\n" +"Saioa automatikoki amaituko zaizu segundo %d barru." +msgstr[1] "" +"Unean \"%s\" gisa hasi duzu saioa.\n" +"Saioa automatikoki amaituko zaizu %d segundo barru." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Unean \"%s\" gisa hasi duzu saioa.\n" +"Sistema automatikoki itzali egingo da segundo %d barru." +msgstr[1] "" +"Unean \"%s\" gisa hasi duzu saioa.\n" +"Sistema automatikoki itzali egingo da %d segundo barru." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Amaitu sistemako saioa orain?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Aldatu erabiltzailea" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Amaitu saioa" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Itzali sistema orain?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Eseki" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernatu" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Berrabiarazi" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Itzali" + --- gnome-panel-2.27.91.orig/debian/po-up/vi.po +++ gnome-panel-2.27.91/debian/po-up/vi.po @@ -0,0 +1,75 @@ +# Vietnamese Translation for Gnome Panel. +# Copyright © 2007 Free Software Foundation, Inc. +# Nguyễn Thái Ngọc Duy 2002-2004,2007-2008. +# Clytie Siddall , 2005-2007. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel 2.19.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-23 17:42+0700\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.7b1\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Bạn hiện thời được đăng nhập là « %s ».\n" +"Bạn sẽ được đăng xuất tự động trong vòng %d giây." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Bạn hiện thời được đăng nhập là « %s ».\n" +"Hệ thống này sẽ được tắt tự động trong vòng %d giây." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Đăng xuất hệ thống này ngay bây giờ không?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Đổi người dùng" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "Đăng _xuất" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Tắt hệ thống này ngay bây giờ không?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Ngưng" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "N_gủ đông" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Khởi chạy lại" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Tắt máy" + --- gnome-panel-2.27.91.orig/debian/po-up/ps.po +++ gnome-panel-2.27.91/debian/po-up/ps.po @@ -0,0 +1,73 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: GNOME\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-05 11:25-0800\n" +"Last-Translator: Zabeeh khan \n" +"Language-Team: Pashto \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Pashto, Pushto\n" +"X-Poedit-Country: AFGHANISTAN\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +msgstr[1] "" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +msgstr[1] "" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "دې غونډال نه دستي وتل غواړﺉ؟" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "کارن ونجول_" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "وتون_" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "دا غونډال دستي ګلول غواړﺉ؟" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "د_رول" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "پرکالول_" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "بياپېلول_" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "ګلول_" + --- gnome-panel-2.27.91.orig/debian/po-up/id.po +++ gnome-panel-2.27.91/debian/po-up/id.po @@ -0,0 +1,71 @@ +# Ahmad Riza H Nst , 2006 +# Mohammad DAMT +# Erwin Sanjaya +# +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel HEAD\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2006-08-19 10:15+0700\n" +"Last-Translator: Mohammad DAMT \n" +"Language-Team: Indonesian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../patches/02_panel_logout.patch:663 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "Anda akan secara otomatis keluar dalam %d detik." +msgstr[1] "Anda akan secara otomatis keluar dalam %d detik." + +#: ../patches/02_panel_logout.patch:674 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "System akan secara otomatis mati dalam %d detik." +msgstr[1] "System akan secara otomatis mati dalam %d detik." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Keluar dari system ini sekarang?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Pindah Pengguna" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "Kel_uar" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Matikan system ini sekarang?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "T_unda" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernasi" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Restart" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Matikan" + --- gnome-panel-2.27.91.orig/debian/po-up/da.po +++ gnome-panel-2.27.91/debian/po-up/da.po @@ -0,0 +1,100 @@ +# Danish translation of gnome-panel. +# Copyright (C) 1998-99, 2000-08 Free Software Foundation, Inc. +# This file is distributed under the same license as the gnome-panel package. +# Kenneth Christiansen , 1998-2000. +# Birger Langkjer , 1999. +# Keld Simonsen , 2000-2001. +# Ole Laursen , 2001, 02, 03, 04, 05, 06. +# Martin Willemoes Hansen , 2004, 05. +# Peter Bach , 2007. +# Ask Hjorth Larsen , 2007, 08. +# +# Konventioner: +# +# dialog -> vindue +# hints -> tip +# launcher -> genvej +# notification area -> statusfelt +# properties -> indstillinger +# workspace -> arbejdsområde +# workspace switcher -> arbejdsområdeskifter +# URL -> adresse +# +# Se i øvrigt po-filen til gnome-applets. +# Husk at tilføje dig i credit-listen (besked id "translator-credits") +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-09 18:23+0100\n" +"Last-Translator: Ask Hjorth Larsen \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Du er i øjeblikket logget ind som \"%s\"\n" +"Du bliver automatisk logget ud om %d sekund." +msgstr[1] "" +"Du er i øjeblikket logget ind som \"%s\".\n" +"Du bliver automatisk logget ud om %d sekunder." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Du er i øjeblikket logget ind som \"%s\".\n" +"Dette system slukker automatisk om %d sekund." +msgstr[1] "" +"Du er i øjeblikket logget ind som \"%s\".\n" +"Dette system slukker automatisk om %d sekunder." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Log ud af systemet nu?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Skift bruger" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Log ud" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Sluk maskinen nu?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Suspendér" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Dvale" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Genstart" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Sluk" + --- gnome-panel-2.27.91.orig/debian/po-up/fr.po +++ gnome-panel-2.27.91/debian/po-up/fr.po @@ -0,0 +1,91 @@ +# French translation of gnome-panel. +# Copyright (C) 1998-2008 Free Software Foundation, Inc. +# This file is distributed under the same license as the gnome-panel package. +# +# Vincent Renardias , 1998-2000. +# Joaquim Fellmann , 2000. +# Christophe Merlet , 2000-2006. +# Christophe Fergeau , 2002. +# Baptiste Mille-Mathias , 2004-2005. +# Benoît Dejean , 2006. +# Robert-André Mauchin , 2006-2008. +# Damien Durand , 2006. +# Myriam Malga , 2007. +# Claude Paroz , 2007-2008. +# Stéphane Raimbault , 2007-2008. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD.fr\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-06 08:18+0100\n" +"Last-Translator: Stéphane Raimbault \n" +"Language-Team: GNOME French Team \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n>1;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Vous êtes actuellement connecté en tant que « %s ».\n" +"Vous serez automatiquement déconnecté dans %d seconde." +msgstr[1] "" +"Vous êtes actuellement connecté en tant que « %s ».\n" +"Vous serez automatiquement déconnecté dans %d secondes." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Vous êtes actuellement connecté en tant que « %s ».\n" +"Ce système va s'éteindre automatiquement dans %d seconde." +msgstr[1] "" +"Vous êtes actuellement connecté en tant que « %s ».\n" +"Ce système va s'éteindre automatiquement dans %d secondes." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Se déconnecter du système maintenant ?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "Changer d'_utilisateur" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Fermer la session" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Voulez-vous éteindre le système maintenant ?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Suspendre" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hiberner" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Redémarrer" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "Ét_eindre" + --- gnome-panel-2.27.91.orig/debian/po-up/ro.po +++ gnome-panel-2.27.91/debian/po-up/ro.po @@ -0,0 +1,83 @@ +# Romanian translation for gnome-panel +# Copyright (C) 2000 - 2004 Free Software Foundation, Inc. +# Marius Andreiana , 2000, 2002, 2003. +# Mişu Moldovan , 2003, 2004. +# Dan Damian , 2000-2001, 2005-2006. +# Alexandru Szasz , 2007. +# TODO: "item" e tradus ca "item" şi "element" +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2007-09-13 11:07+0300\n" +"Last-Translator: Alexandru Szasz \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n>1;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Sunteţi autentificat ca „%s”.\n" +"Veţi fi dezautentificat automat în %d secundă." +msgstr[1] "" +"Sunteţi autentificat ca „%s”.\n" +"Veţi fi dezautentificat automat în %d secunde." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Sunteţi autentificat ca „%s”.\n" +"Sistemul va fi oprit automat în %d secundă." +msgstr[1] "" +"Sunteţi autentificat ca „%s”.\n" +"Sistemul va fi oprit automat în %d secunde." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Ieşiţi din sistem acum?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Schimbă utilizatorul" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Ieşi din sesiune" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Opriţi sistemul acum?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "S_uspendă" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernează" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Reporneşte calculatorul" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Opreşte calculatorul" + --- gnome-panel-2.27.91.orig/debian/po-up/mg.po +++ gnome-panel-2.27.91/debian/po-up/mg.po @@ -0,0 +1,74 @@ +# MALAGASY TRANSLATION OF GNOME-PANEL. +# Copyright (C) 2007 THE GNOME-PANEL'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Fano Rajaonarisoa , 2006. +# Thierry Randrianiriana , 2007. +msgid "" +msgstr "" +"Project-Id-Version: Gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-21 08:32+0300\n" +"Last-Translator: Thierry Randrianiriana ,2006\n" +"Language-Team: Malagasy \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n>1;\n" + +#: ../patches/02_panel_logout.patch:663 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "Hivoaka hoazy ianao afaka %d segaondra." +msgstr[1] "Hivoaka hoazy ianao afaka %d segaondra." + +#: ../patches/02_panel_logout.patch:674 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "Hijanona hoazy ity rafitra ity afaka %d segaondra." +msgstr[1] "Hijanona hoazy ity rafitra ity afaka %d segaondra." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Hivoaka ity rafitra ity izao dieny izao?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Hiova mpampiasa" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Hivoaka" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Hajanona ity rafitra ity izao dieny izao?" + +#: ../patches/02_panel_logout.patch:782 +#, fuzzy +msgid "S_uspend" +msgstr "_Ampiatoy" + +#: ../patches/02_panel_logout.patch:787 +#, fuzzy +msgid "_Hibernate" +msgstr "_Hibernate" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Avereno alefa" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Ajanony" + --- gnome-panel-2.27.91.orig/debian/po-up/fi.po +++ gnome-panel-2.27.91/debian/po-up/fi.po @@ -0,0 +1,85 @@ +# Finnish messages for gnome-panel +# Copyright (C) 2002-2008 Free Software Foundation, Inc. +# Suomennos: http://gnome.fi/ +# Ville Hautamäki , 1998, 2000 +# Mikko Rauhala , 1999 +# Pauli Virtanen , 2000-2004 +# Ilkka Tuohela , 2005-2008 +# Timo Jyrinki +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-29 11:52+0200\n" +"Last-Translator: Timo Jyrinki \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Olet kirjautunut sisään käyttäjänä \"%s\".\n" +"Kirjaudut automaattisesti ulos %d sekunnin kuluttua." +msgstr[1] "" +"Olet kirjautunut sisään käyttäjänä \"%s\".\n" +"Kirjaudut automaattisesti ulos %d sekunnin kuluttua." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Olet kirjautunut sisään käyttäjänä \"%s\".\n" +"Tietokone sammutetaan automaattisesti %d sekunnin kuluttua." +msgstr[1] "" +"Olet kirjautunut sisään käyttäjänä \"%s\".\n" +"Tietokone sammutetaan automaattisesti %d sekunnin kuluttua." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Haluatko kirjautua heti ulos?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Vaihda käyttäjää" + +# gnome-panel/foobar-widget.c:212 gnome-panel/menu.c:3460 +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Kirjaudu ulos" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Haluatko sammuttaa tietokoneen heti?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Keskeytystila" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Lepotila" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Käynnistä uudelleen" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Sammuta" + --- gnome-panel-2.27.91.orig/debian/po-up/hu.po +++ gnome-panel-2.27.91/debian/po-up/hu.po @@ -0,0 +1,90 @@ +# Hungarian translation of gnome-panel. +# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# This file is distributed under the same license as the gnome-panel package. +# +# +# Szabolcs Ban , 1998, 1999, 2000, 2001. +# Emese Kovacs , 2000, 2001, 2002. +# Tamas Vamosi , 2002. +# Andras Timar , 2001, 2002, 2003. +# Gabor Sari , 2003. +# Laszlo Dvornik , 2004. +# Gabor Kelemen , 2004, 2005, 2006, 2007, 2008. +# Mate ORY , 2006. +# Nyitrai István , 2008. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-23 22:49+0100\n" +"Last-Translator: Gabor Kelemen \n" +"Language-Team: Hungarian \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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Jelenleg „%s” néven van bejelentkezve.\n" +"%d másodperc múlva automatikusan ki lesz jelentkeztetve." +msgstr[1] "" +"Jelenleg „%s” néven van bejelentkezve.\n" +"%d másodperc múlva automatikusan ki lesz jelentkeztetve." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Jelenleg „%s” néven van bejelentkezve.\n" +"%d másodperc múlva automatikusan leáll a számítógép." +msgstr[1] "" +"Jelenleg „%s” néven van bejelentkezve.\n" +"%d másodperc múlva automatikusan leáll a számítógép." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Biztosan ki akar jelentkezni?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Felhasználóváltás" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Kijelentkezés" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Biztosan le szeretné állítani a rendszert?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Felfüggesztés" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernálás" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "Újrai_ndítás" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Leállítás" + --- gnome-panel-2.27.91.orig/debian/po-up/et.po +++ gnome-panel-2.27.91/debian/po-up/et.po @@ -0,0 +1,88 @@ +# GNOME paneeli eesti keele tõlge. +# Estonian translation of GNOME panel. +# +# Copyright (C) 1999, 2001-2006 Free Software Foundation, Inc. +# Copyright (C) 2007, 2008, The GNOME Project. +# This file is distributed under the same license as the gnome-panel package. +# +# Lauris Kaplinski , 1999. +# Ilmar Kerm , 2001, 2002. +# Tõivo Leedjärv , 2002, 2003. +# Priit Laes , 2004-2006, 2008 +# Ivar Smolin , 2005-2008. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel HEAD\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-12 19:31+0200\n" +"Last-Translator: Priit Laes \n" +"Language-Team: Estonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Sa oled praegu sisse logitud kasutajana \"%s\".\n" +"Sind logitakse %d sekundi möödumisel automaatselt välja." +msgstr[1] "" +"Sa oled praegu sisse logitud kasutajana \"%s\".\n" +"Sind logitakse %d sekundi möödumisel automaatselt välja." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Sa oled praegu sisse logitud kasutajana \"%s\".\n" +"Süsteem seisatakse %d sekundi möödumisel automaatselt." +msgstr[1] "" +"Sa oled praegu sisse logitud kasutajana \"%s\".\n" +"Süsteem seisatakse %d sekundi möödumisel automaatselt." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Kas logida süsteemist välja?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "Lülitu teisele _kasutajale" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "Logi _välja" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Kas lülitada arvuti välja?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Ooterežiimile" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Talveunne" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Taaskäivita" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Seiska arvuti" + --- gnome-panel-2.27.91.orig/debian/po-up/zh_CN.po +++ gnome-panel-2.27.91/debian/po-up/zh_CN.po @@ -0,0 +1,80 @@ +# translation of gnome-panel.po to zh_CN +# Dillion Chen +# Updated and QA by Wang Jian +# Updated and QA by Jiang Xiong , 2001 +# Updated and QA by Zipeco , 2002 +# Updated and QA by WangLi , 2002 +# Updated by He Qiangqiang , 2002 +# Funda Wang , 2003-2006 +# Xiong Jiang , 2003 +# YangZhang , 2008 +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-27 20:04+0800\n" +"Last-Translator: Yang Zhang \n" +"Language-Team: Chinese i18n \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"您目前正以“%s”的身份登录。\n" +"您将在 %d 秒后被自动注销。" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"您目前正以“%s”的身份登录。\n" +"此系统将在 %d 秒后自动关机。" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "立即注销此系统吗?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "切换用户(_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "注销(_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "立即关闭此系统吗?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "挂起(_U)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "休眠(_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "重新启动(_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "关机(_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/pl.po +++ gnome-panel-2.27.91/debian/po-up/pl.po @@ -0,0 +1,85 @@ +# Copyright (C) 2001-2005 Free Software Foundation, Inc. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-16 22:59+0100\n" +"Last-Translator: Tomasz Dominikowski \n" +"Language-Team: Tomasz Dominikowski (Aviary.pl \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Poedit-Language: Polish\n" +"X-Poedit-Country: Poland\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Nazwa zalogowanego użytkownika: \"%s\".\n" +"Nastąpi automatyczne wylogowanie za %d sekundę." +msgstr[1] "" +"Nazwa zalogowanego użytkownika: \"%s\".\n" +"Nastąpi automatyczne wylogowanie za %d sekundy." +msgstr[2] "" +"Nazwa zalogowanego użytkownika: \"%s\".\n" +"Nastąpi automatyczne wylogowanie za %d sekund." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Nazwa zalogowanego użytkownika: \"%s\".\n" +"Komputer zostanie automatycznie wyłączony za %d sekundę." +msgstr[1] "" +"Nazwa zalogowanego użytkownika: \"%s\".\n" +"Komputer zostanie automatycznie wyłączony za %d sekundy." +msgstr[2] "" +"Nazwa zalogowanego użytkownika: \"%s\".\n" +"Komputer zostanie automatycznie wyłączony za %d sekund." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Czy wylogować teraz?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Przełącz użytkownika" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Wyloguj" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Wyłączyć teraz komputer?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Uśpij" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernuj" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "U_ruchom ponownie" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Wyłącz" + --- gnome-panel-2.27.91.orig/debian/po-up/nl.po +++ gnome-panel-2.27.91/debian/po-up/nl.po @@ -0,0 +1,93 @@ +# Dutch translation for gnome-panel +# +# This file is distributed under the same license as the gnome-panel package. +# +# Dirk-Jan C. Binnema , 1998, 1999. +# Dennis Smit , 2000. +# Almer S. Tigelaar , 2000. +# Vincent van Adrighem , 2001. +# Huib Kleinhout , 2002. +# Ronald Hummelink , 2002. +# Tino Meinen , 2002. 2006, 2007. +# Reinout van Schouwen , 2002-2006 +# Daniel van Eeden , 2008 +# Wouter Bolsterlee , 2006–2008 +# +# desktop - bureaublad +# workspace - werkblad +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-24 16:36+0100\n" +"Last-Translator: Wouter Bolsterlee \n" +"Language-Team: Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"U ben momenteel ingelogd als ‘%s’.\n" +"U wordt automatisch afgemeld in %d seconde." +msgstr[1] "" +"U ben momenteel ingelogd als ‘%s’.\n" +"U wordt automatisch afgemeld in %d seconden." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"U ben momenteel ingelogd als ‘%s’.\n" +"Dit systeem wordt automatisch afgesloten in %d seconde." +msgstr[1] "" +"U ben momenteel ingelogd als ‘%s’.\n" +"Dit systeem wordt automatisch afgesloten in %d seconden." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Nu van dit systeem afmelden?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "Gebruiker _wisselen" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "A_fmelden" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Dit systeem nu afsluiten?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "Pa_uzestand" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Slaapstand" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "He_rstarten" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "A_fsluiten" + --- gnome-panel-2.27.91.orig/debian/po-up/ne.po +++ gnome-panel-2.27.91/debian/po-up/ne.po @@ -0,0 +1,85 @@ +# translation of gnome-panel.HEAD.ne.po to Nepali +# Nepali Translation Project. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Nabin Gautam , 2007. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD.ne\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2007-11-01 17:29+0545\n" +"Last-Translator: Nabin Gautam \n" +"Language-Team: Nepali \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Nepali\n" +"X-Poedit-Country: NEPAL\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=n !=1\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"तपाईँ हाल \"%s\" का रूपमा लगइन हुनुभएको छ ।\n" +"तपाईँ %d सेकेन्डमा स्वचालित रूपमा लगआउट हुनुनेछ ।" +msgstr[1] "" +"तपाईँ हाल \"%s\" का रूपमा लगइन हुनुभएको छ ।\n" +"तपाईँ %d सेकेन्डमा स्वचालित रूपमा लगआउट हुनुहुनेछ ।" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"तपाईँ हाल \"%s\" का रूपमा लगइन हुनुभएको छ ।\n" +"प्रणाली स्वचालित रूपमा %d सेकेन्डमा बन्द हुनेछ ।" +msgstr[1] "" +"तपाईँ हाल \"%s\" का रूपमा लगइन हुनुभएको छ ।\n" +"प्रणाली स्वचालित रूपमा %d सेकेन्डमा बन्द हुनेछ ।" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "यस प्रणालीलाई अहिले लगआउट गर्नुहुन्छ ?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "स्विच प्रयोगकर्ता" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "लगआउट गर्नुहोस्" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "यस प्रणालीलाई अहिले लगआउट गर्नुहुन्छ ?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "खारेज गर्नुहोस्" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "हाइवरनेट" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "फेरि सुरु गर्नुहोस्" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "बन्द गर्नुहोस्" + --- gnome-panel-2.27.91.orig/debian/po-up/sv.po +++ gnome-panel-2.27.91/debian/po-up/sv.po @@ -0,0 +1,85 @@ +# Swedish messages for gnome-panel. +# Copyright (C) 1998-2008 Free Software Foundation, Inc. +# Daniel Nylander , 2006, 2007, 2008. +# Martin Wahlen , 1998. +# Anders Carlsson , 1999. +# Andreas Hyden , 2000. +# Martin Norbäck , 2000, 2001. +# Christian Rose , 2000, 2001, 2002, 2003, 2004, 2005. +# Johan Dahlin , 2002. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-22 12:57+0100\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Du är för närvarande inloggad som \"%s\".\n" +"Du kommer att automatiskt loggas ut om %d sekund." +msgstr[1] "" +"Du är för närvarande inloggad som \"%s\".\n" +"Du kommer att automatiskt loggas ut om %d sekunder." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Du är för närvarande inloggad som \"%s\".\n" +"Det här systemet kommer att automatiskt stängas av om %d sekund." +msgstr[1] "" +"Du är för närvarande inloggad som \"%s\".\n" +"Det här systemet kommer att automatiskt stängas av om %d sekunder." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Logga ut från det här systemet nu?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Byt användare" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "Logga _ut" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Stänga av det här systemet nu?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Vänteläge" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "Vilolä_ge" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Starta om" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "Stäng _av" + --- gnome-panel-2.27.91.orig/debian/po-up/ta.po +++ gnome-panel-2.27.91/debian/po-up/ta.po @@ -0,0 +1,86 @@ +# translation of gnome-panel.HEAD.po to TAMIL +# translation of ta.po to +# Tamil translation of Gnome-Panel messages. +# Copyright (C) 2001, 2004, 2006, 2007 Free Software Foundation, Inc. +# +# Dinesh Nadarajah , 2004. +# Jayaradha N , 2004. +# Felix , 2006. +# Dr.T.Vasudevan , 2007. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2007-08-12 08:30+0530\n" +"Last-Translator: Dr.T.Vasudevan \n" +"Language-Team: TAMIL \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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"நீங்கள் இப்போது \"%s\" ஆக உள்நுழைந்துள்ளீர்கள்\n" +"நீங்கள் தானாக %d வினாடியில் வெளியேற்றப்படுவீர்கள்" +msgstr[1] "" +"நீங்கள் இப்போது \"%s\" ஆக உள்நுழைந்துள்ளீர்கள்\n" +"நீங்கள் தானாக %d வினாடிகளில் வெளியேற்றப்படுவீர்கள்" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"நீங்கள் இப்போது \"%s\" ஆக உள்நுழைந்துள்ளீர்கள்\n" +"இந்த கணினி தானாக %d வினாடியில் முழு நிறுத்தம் செய்யும்" +msgstr[1] "" +"நீங்கள் இப்போது \"%s\" ஆக உள்நுழைந்துள்ளீர்கள்\n" +"இந்த கணினி தானாக %d வினாடிகளில் முழு நிறுத்தம் செய்யும்" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "கணினியிலிருந்து இப்போது வெளிச்செல்லவா?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "பயனரை மாற்றுக" + +# panel/foobar-widget.c:395 +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "வெளியேறு _L" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "இப்போது இந்த கணினியை நிறுத்தவும்? " + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "இடை நிறுத்தம் _S" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "செயலற்றிருத்தல்_H " + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "மீண்டும் தொடங்கு (_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "நிறுத்தவும் _S " + --- gnome-panel-2.27.91.orig/debian/po-up/cy.po +++ gnome-panel-2.27.91/debian/po-up/cy.po @@ -0,0 +1,74 @@ +# gnome-panel yn Gymraeg. +# This file is distributed under the same license as the gnome-panel package. +# www.gyfieithu.co.uk , 2003. +# Dafydd Harries , 2003 2004. +# Dafydd Tomos , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2006-02-22 21:10-0000\n" +"Last-Translator: Rhys Jones \n" +"Language-Team: Welsh \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#: ../patches/02_panel_logout.patch:663 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "Fe gewch eich allgofnodi'n awtomatig ymhen %d eiliad." +msgstr[1] "Fe gewch eich allgofnodi'n awtomatig ymhen %d eiliad." + +#: ../patches/02_panel_logout.patch:674 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "Bydd y system hon yn cau i lawr yn awtomatig ymhen %d eiliad." +msgstr[1] "Bydd y system hon yn cau i lawr yn awtomatig ymhen %d eiliad." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Allgofnodi o'r system hon nawr?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Newid Defnyddiwr" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Allgofnodi" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Cau'r system hon i lawr yn awr?" + +#: ../patches/02_panel_logout.patch:782 +#, fuzzy +msgid "S_uspend" +msgstr "_Seibio" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Ail-gychwyn" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Cau i Lawr" + --- gnome-panel-2.27.91.orig/debian/po-up/pt.po +++ gnome-panel-2.27.91/debian/po-up/pt.po @@ -0,0 +1,81 @@ +# gnome-panel's Portuguese translation +# Copyright © 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 gnome-panel +# Distributed under the same licence as the gnome-panel package +# Nuno Ferreira , 1999. +# Duarte Loreto , 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: 2.22\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-22 22:22+0000\n" +"Last-Translator: Duarte Loreto \n" +"Language-Team: Português \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Está actualmente em sessão como \"%s\".\n" +"A sua sessão terminará automaticamente dentro de %d segundo." +msgstr[1] "" +"Está actualmente em sessão como \"%s\".\n" +"A sua sessão terminará automaticamente dentro de %d segundos." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Está actualmente em sessão como \"%s\".\n" +"O computador irá desligar-se automaticamente dentro de %d segundo." +msgstr[1] "" +"Está actualmente em sessão como \"%s\".\n" +"O computador irá desligar-se automaticamente dentro de %d segundos." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Terminar esta sessão agora?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Alternar Utilizador" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Terminar Sessão" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Desligar agora este computador?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "S_uspender" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernar" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Reiniciar" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Desligar" + --- gnome-panel-2.27.91.orig/debian/po-up/nb.po +++ gnome-panel-2.27.91/debian/po-up/nb.po @@ -0,0 +1,80 @@ +# Norwegian translation of gnome-panel (bokmål dialect). +# Copyright (C) 1998-2003 Free Software Foundation, Inc. +# Kjartan Maraas , 1998-2008. +# Øivind Hoel , 2006 +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel 2.21.x\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-26 18:08+0100\n" +"Last-Translator: Kjartan Maraas \n" +"Language-Team: Norwegian Bokmål \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Du er logget inn som «%s».\n" +"Du vil bli logget ut automatisk om %d sekund." +msgstr[1] "" +"Du er logget inn som «%s».\n" +"Du vil bli logget ut automatisk om %d sekunder." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Du er logget inn som «%s».\n" +"Datamaskinen vil bli skrudd av automatisk om %d sekund." +msgstr[1] "" +"Du er logget inn som «%s».\n" +"Datamaskinen vil bli skrudd av automatisk om %d sekunder." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Vil du logge ut fra systemet nå?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Bytt bruker" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Logg ut" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Slå av systemet nå?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "Hvilemod_us" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "D_valemodus" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "Sta_rt på nytt" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Slå av" + --- gnome-panel-2.27.91.orig/debian/po-up/te.po +++ gnome-panel-2.27.91/debian/po-up/te.po @@ -0,0 +1,81 @@ +# Telugu translation of gnome-panel +# Copyright (C) 2005 Free Software Foundation, Andhra Pradesh. +# This file is distributed under the same license as the gnome-panel package. +# +# Prajasakti Localisation Team , 2005. +# Krishna Babu K , 2007, 2008. +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-07 12:52+0530\n" +"Last-Translator: Krishna Babu K \n" +"Language-Team: Swecha Telugu Localisation Team \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"మీరు ప్రస్తుతం ఇలా లాగ్ అయివున్నారు \"%s\".\n" +"మీరు స్వయంచాలకంగా %d సెకన్ లో లాగ్ అవుట్ అవుతారు." +msgstr[1] "" +"మీరు ప్రస్తుతం ఇలా లాగ్ అయివున్నారు \"%s\".\n" +"మీరు స్వయంచాలకంగా %d సెకన్ లో లాగ్ అవుట్ అవుతారు." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"మీరు ప్రస్తుతం ఇలా లాగ్‌డ్ అయిఉన్నారు \"%s\".\n" +"ఈ సిస్టమ్ స్వయంచాలకంగా %d సెంకండ్ లో మూసివేయబడుతుంది." +msgstr[1] "" +"మీరు ప్రస్తుతం ఇలా లాగ్‌డ్ అయిఉన్నారు \"%s\".\n" +"ఈ సిస్టమ్ స్వయంచాలకంగా %d సెంకండ్ లో మూసివేయబడుతుంది." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "ఈ సిస్టమ్ నుండి ఇప్పుడే లాగ్అవుట్ అవ్వాలా?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "వినియోగదారిని మార్చు(_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "నిష్క్రమణ(_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "ఈ సిస్టమ్ ను ఇప్పుడు మూసివేయాలా?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "నిలకడచేయు(_u)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "షుప్తావస్థ(_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "పునఃప్రారంభం(_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "మూసివేయి(_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/as.po +++ gnome-panel-2.27.91/debian/po-up/as.po @@ -0,0 +1,82 @@ +# translation of as.po to Assamese +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Amitakhya Phukan , 2008. +# Amitakhya Phukan , 2008. +msgid "" +msgstr "" +"Project-Id-Version: as\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-01 16:40+0530\n" +"Last-Translator: Amitakhya Phukan \n" +"Language-Team: Assamese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n!=1)\n" +"X-Generator: KBabel 1.11.4\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"আপনি বৰ্তমানে \"%s\" পৰিচয়ে লগ-ইন কৰেছেন।\n" +"%d সেকেন্ড অতিক্ৰান্ত হলে স্বয়ংক্ৰিয়ৰূপে আপনাকে লগ-আউট কৰা হবে।" +msgstr[1] "" +"আপনি বৰ্তমানে \"%s\" পৰিচয়ে লগ-ইন কৰেছেন।\n" +"%d সেকেন্ড অতিক্ৰান্ত হলে স্বয়ংক্ৰিয়ৰূপে আপনাকে লগ-আউট কৰা হবে।" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"আপনি বৰ্তমানে \"%s\" পৰিচয়ে লগ-ইন কৰেছেন।\n" +"%d সেকেন্ড অতিক্ৰান্ত হলে স্বয়ংক্ৰিয়ৰূপে এই সিস্টেম বন্ধ কৰা হবে।" +msgstr[1] "" +"আপনি বৰ্তমানে \"%s\" পৰিচয়ে লগ-ইন কৰেছেন।\n" +"%d সেকেন্ড অতিক্ৰান্ত হলে স্বয়ংক্ৰিয়ৰূপে এই সিস্টেম বন্ধ কৰা হবে।" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Log out of this system now?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "ব্যবহাৰকাৰী পৰিবৰ্তন (_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "লগ-আউট (_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "সিস্টেম এই মুহূৰ্তে বন্ধ কৰা হবে কি?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "স্থগিত কৰুন (_u)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "নিদ্ৰিত অবস্থা (_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "পুনৰায় আৰম্ভ (_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "বন্ধ কৰুন (_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/af.po +++ gnome-panel-2.27.91/debian/po-up/af.po @@ -0,0 +1,82 @@ +# Afrikaans translation of gnome-panel. +# Copyright (C) 2004 Zuza Software Foundation +# This file is distributed under the same license as the gnome-panel package. +# Zuza Software Foundation , 2004 +# F Wolff , 2008 +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel 2.6-branch\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-02 14:33+0200\n" +"Last-Translator: F Wolff \n" +"Language-Team: Afrikaans localisation list \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: VirTaal 0.1\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"U is tans aangemeld as \"%s\".\n" +"U sal outomaties afgemeld word oor %d sekonde." +msgstr[1] "" +"U is tans aangemeld as \"%s\".\n" +"U sal outomaties afgemeld word oor %d sekondes." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"U is tans aangemeld as \"%s\".\n" +"Die stelsel sal outomaties afgeskakel word oor %d sekonde." +msgstr[1] "" +"U is tans aangemeld as \"%s\".\n" +"Die stelsel sal outomaties afgeskakel word oor %d sekondes." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Meld nou af van hierdie stelsel?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Ruil gebruiker" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "Me_ld af" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Skakel die stelsel nou af?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hiberneer" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "He_rbegin" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Skakel af" + --- gnome-panel-2.27.91.orig/debian/po-up/lt.po +++ gnome-panel-2.27.91/debian/po-up/lt.po @@ -0,0 +1,92 @@ +# translation of lt.po to Lithuanian +# Lithuanian translation of gnome-panel +# Copyright (C) 2000-2008 Free Software Foundation, Inc. +# +# +# Gediminas Paulauskas , 2000-2002. +# Vaidotas Zemlys , 2003. +# Žygimantas Beručka , 2004-2008. +# Justina Klingaitė , 2005. +# Gintautas Miliauskas , 2007. +msgid "" +msgstr "" +"Project-Id-Version: lt\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-02 19:33+0200\n" +"Last-Translator: Žygimantas Beručka \n" +"Language-Team: Lithuanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" +"100<10 || n%100>=20) ? 1 : 2);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Dabar esate prisijungę kaip „%s“.\n" +"Jūs būsite automatiškai atjungti po %d sekundės." +msgstr[1] "" +"Dabar esate prisijungę kaip „%s“.\n" +"Jūs būsite automatiškai atjungti po %d sekundžių." +msgstr[2] "" +"Dabar esate prisijungę kaip „%s“.\n" +"Jūs būsite automatiškai atjungti po %d sekundžių." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Dabar esate prisijungę kaip „%s“.\n" +"Ši sistema bus automatiškai išjungta po %d sekundės." +msgstr[1] "" +"Dabar esate prisijungę kaip „%s“.\n" +"Ši sistema bus automatiškai išjungta po %d sekundžių." +msgstr[2] "" +"Dabar esate prisijungę kaip „%s“.\n" +"Ši sistema bus automatiškai išjungta po %d sekundžių." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Atsijungti iš šios sistemos dabar?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "P_erjungti naudotoją" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "At_sijungti" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Išjungti šią sistemą dabar?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Užmigdyti" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernuoti" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Paleisti iš naujo" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Išjungti" + --- gnome-panel-2.27.91.orig/debian/po-up/mr.po +++ gnome-panel-2.27.91/debian/po-up/mr.po @@ -0,0 +1,84 @@ +# translation of gnome-panel.HEAD.mr.po to marathi +# FIRST AUTHOR Pradeep Deshpande +# Rahul Bhalerao , 2006. +# Sandeep Shedmake , 2008. +# Marathi translation of gnome-panel-2.0.po +# Copyright (C) 2004, Jitendra Shah +# This file is released under GPL +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel.HEAD.mr\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-29 12:36+0530\n" +"Last-Translator: Sandeep Shedmake \n" +"Language-Team: marathi\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" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" +"\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"तुम्ही सध्या \"%1$s\" म्हणून दाखलन केले.\n" +"तुम्ही %2$d सेकंदात आपोआप लॉग आउट व्हाल." +msgstr[1] "" +"तुम्ही सध्या \"%1$s\" म्हणून दाखलन केले.\n" +"तुम्ही %2$d सेकंदांत आपोआप लॉग आउट व्हाल." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"तुम्ही सध्या \"%1$s\" म्हणून दाखलन केले.\n" +"प्रणाली %2$d सेकंदात आपोआप बंद होईल." +msgstr[1] "" +"तुम्ही सध्या \"%1$s\" म्हणून दाखलन केले.\n" +"प्रणाली %2$d सेकंदांत आपोआप बंद होईल." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "या प्रणालीतून आता लॉग आउट व्हावे?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "उपयोक्ता बदला(_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "लॉग आउट(_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "ही प्रणाली आता बंद करावी?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "निलंबन(_u)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "हाइबरनेट(_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "पुनःआरंभ(_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "बंद करा(_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/de.po +++ gnome-panel-2.27.91/debian/po-up/de.po @@ -0,0 +1,89 @@ +# German gnome-panel translation. +# Copyright (C) 1998-2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the gnome-panel package. +# Carsten Schaar , 1998. +# Matthias Warkus , 1999-2001. +# Karl Eichwalder , 2000, 2001. +# Christian Meyer , 2000, 2001. +# Benedikt Roth , 2000, 2001. +# Jörgen Scheibengruber , 2002. +# Christian Neumair , 2002-2004. +# Hendrik Richter , 2004, 2005, 2006, 2007. +# Christian Kintner , 2006. +# Philipp Kerling , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel HEAD\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-24 14:06+0100\n" +"Last-Translator: Philipp Kerling \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Sie sind momentan als »%s« angemeldet.\n" +"Sie werden in %d Sekunde automatisch abgemeldet." +msgstr[1] "" +"Sie sind momentan als »%s« angemeldet.\n" +"Sie werden in %d Sekunden automatisch abgemeldet." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Sie sind momentan als »%s« angemeldet.\n" +"Der Rechner wird in %d Sekunde automatisch ausgeschaltet." +msgstr[1] "" +"Sie sind momentan als »%s« angemeldet.\n" +"Der Rechner wird in %d Sekunden automatisch ausgeschaltet." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Möchten Sie sich jetzt abmelden?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Benutzer wechseln" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "A_bmelden" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Möchten Sie den Rechner jetzt ausschalten?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Bereitschaft" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Ruhezustand" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Neu starten" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Ausschalten" + --- gnome-panel-2.27.91.orig/debian/po-up/sl.po +++ gnome-panel-2.27.91/debian/po-up/sl.po @@ -0,0 +1,99 @@ +# Slovenian translation of gnome-panel +# Copyright (C) 2002-2007 Free Software Foundation, Inc. +# This file is distributed under the same license as the gnome-panel package. +# +# Andraz Tori , 2002. +# Matic Žgur , 2006. +# Matej Urbančič , 2007 - 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-02-25 19:05+0100\n" +"Last-Translator: Matej Urbančič \n" +"Language-Team: slovenian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" +"%100==4 ? 3 : 0);\n" +"X-Poedit-Language: Slovenian\n" +"X-Poedit-Country: SLOVENIJA\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Trenutno je prijavljen uporabnik \"%s\".\n" +"Samodejno boste odjavljeni čez %d sekund." +msgstr[1] "" +"Trenutno je prijavljen uporabnik \"%s\".\n" +"Samodejno boste odjavljeni čez %d sekundo." +msgstr[2] "" +"Trenutno je prijavljen uporabnik \"%s\".\n" +"Samodejno boste odjavljeni čez %d sekundi." +msgstr[3] "" +"Trenutno je prijavljen uporabnik \"%s\".\n" +"Samodejno boste odjavljeni čez %d sekunde." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Trenutno je prijavljen uporabnik \"%s\".\n" +"Sistem se bo samodejno izklopil čez %d sekund." +msgstr[1] "" +"Trenutno je prijavljen uporabnik \"%s\".\n" +"Sistem se bo samodejno izklopil čez %d sekundo." +msgstr[2] "" +"Trenutno je prijavljen uporabnik \"%s\".\n" +"Sistem se bo samodejno izklopil čez %d sekundi." +msgstr[3] "" +"Trenutno je prijavljen uporabnik \"%s\".\n" +"Sistem se bo samodejno izklopil čez %d sekunde." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Ali se želite odjaviti iz sistema?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Zamenjaj uporabnika" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Odjava" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Ali želite izklopiti računalnik?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Zaustavi" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Hibernacija" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "_Ponoven zagon" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Izklop" + --- gnome-panel-2.27.91.orig/debian/po-up/nn.po +++ gnome-panel-2.27.91/debian/po-up/nn.po @@ -0,0 +1,87 @@ +# translation of nn.po to Norwegian Nynorsk +# Christian Fredrik Kalager Schaller , 2000-2001. +# Kjartan Maraas , 2001. +# Roy-Magne Mo , 2001-2002. +# Monica Gausen , 2001. +# Åsmund Skjæveland , 2003, 2004, 2006. +# Eskild Hustvedt , 2008 +# Norwegian (nynorsk) translation of gnome-core. +# Copyright (C) 1998-2000, 2003, 2004, 2006, 2008 Free Software Foundation, Inc. +# +msgid "" +msgstr "" +"Project-Id-Version: nn\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-04-02 08:03+0200\n" +"Last-Translator: Eskild Hustvedt \n" +"Language-Team: Norwegian Nynorsk \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: VIM\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"Du er logga inn som «%s».\n" +"Du vil verta logga ut automatisk om %d sekund." +msgstr[1] "" +"Du er logga inn som «%s».\n" +"Du vil verta logga ut automatisk om %d sekund." + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"Du er logga inn som «%s».\n" +"Datamaskinen vil verta skrudd av automatisk om %d sekund." +msgstr[1] "" +"Du er logga inn som «%s».\n" +"Datamaskinen vil verta skrudd av automatisk om %d sekund." + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "Logg ut frå dette systemet?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "_Byt brukar" + +# panel/foobar-widget.c:372 +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "_Logg ut" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "Slå av dette systemet?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "_Kvilemodus" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "_Dvalemodus" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "Sta_rt på nytt" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "_Slå av" + --- gnome-panel-2.27.91.orig/debian/po-up/bn_IN.po +++ gnome-panel-2.27.91/debian/po-up/bn_IN.po @@ -0,0 +1,80 @@ +# translation of bn_IN.po to Bengali INDIA +# Bangla Translation of Gnome-Panel file. +# Copyright (C) 2005 Free Software Foundation. +# This file is distributed under the same license as the gnome-panel package. +# +# Runa Bhattacharjee, 2005. +# Runa Bhattacharjee , 2008. +msgid "" +msgstr "" +"Project-Id-Version: bn_IN\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-08 12:38+0530\n" +"Last-Translator: Runa Bhattacharjee \n" +"Language-Team: Bengali INDIA \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" +"Plural-Forms: nplurals=1; plural=0;\n" +"\n" +"\n" +"\n" + +#: ../patches/02_panel_logout.patch:663 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"আপনি বর্তমানে \"%s\" পরিচয়ে লগ-ইন করেছেন।\n" +"%d সেকেন্ড অতিক্রান্ত হলে স্বয়ংক্রিয়রূপে আপনাকে লগ-আউট করা হবে।" + +#: ../patches/02_panel_logout.patch:674 +#, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"আপনি বর্তমানে \"%s\" পরিচয়ে লগ-ইন করেছেন।\n" +"%d সেকেন্ড অতিক্রান্ত হলে স্বয়ংক্রিয়রূপে এই সিস্টেম বন্ধ করা হবে।" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "সিস্টেম থেকে এই মুহূর্তে লগ-আউট করা হবে কি?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "ব্যবহারকারী পরিবর্তন (_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "প্রস্থান (_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "সিস্টেম এই মুহূর্তে বন্ধ করা হবে কি?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "স্থগিত করুন (_u)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "নিদ্রিত অবস্থা (_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "পুনরাম্ভ (_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "বন্ধ করুন (_S)" + --- gnome-panel-2.27.91.orig/debian/po-up/zh_HK.po +++ gnome-panel-2.27.91/debian/po-up/zh_HK.po @@ -0,0 +1,92 @@ +# Chinese (Hong Kong) translation of gnome-panel. +# Copyright (C) 1999-2007 Free Software Foundation, Inc. +# gnome-core: +# Yuan-Chung Cheng , 1999. +# Jing-Jong SHYUE , 2000. +# Chih-Wei Huang , 2000. +# Abel Cheung , 2001-2002. +# gnome-panel: +# Kevin Kee , 2004 +# Abel Cheung , 2002-2004. +# Woodman Tuen , 2005-07 +# +# +msgid "" +msgstr "" +"Project-Id-Version: gnome-panel 2.21.90\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-12-28 03:30+0100\n" +"PO-Revision-Date: 2008-03-09 16:20+0800\n" +"Last-Translator: Woodman Tuen \n" +"Language-Team: Chinese (Hong Kong) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../patches/02_panel_logout.patch:663 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"You will be automatically logged out in %d seconds." +msgstr[0] "" +"你目前以「%s」登入。\n" +"你會在 %d 秒後自動登出。你目前以「%s」登入。\n" +"你會在 %d 秒後自動登出。" +msgstr[1] "" +"你目前以「%s」登入。\n" +"你會在 %d 秒後自動登出。你目前以「%s」登入。\n" +"你會在 %d 秒後自動登出。" + +#: ../patches/02_panel_logout.patch:674 +#, fuzzy, c-format +msgid "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d second." +msgid_plural "" +"You are currently logged in as \"%s\".\n" +"This system will be automatically shut down in %d seconds." +msgstr[0] "" +"你目前以「%s」登入。\n" +"本系統會在 %d 秒後自動關閉。你目前以「%s」登入。\n" +"本系統會在 %d 秒後自動關閉。" +msgstr[1] "" +"你目前以「%s」登入。\n" +"本系統會在 %d 秒後自動關閉。你目前以「%s」登入。\n" +"本系統會在 %d 秒後自動關閉。" + +#: ../patches/02_panel_logout.patch:760 +msgid "Log out of this system now?" +msgstr "現在從本系統中登出?" + +#: ../patches/02_panel_logout.patch:766 +msgid "_Switch User" +msgstr "切換使用者(_S)" + +#: ../patches/02_panel_logout.patch:772 +msgid "_Log Out" +msgstr "登出(_L)" + +#: ../patches/02_panel_logout.patch:777 +msgid "Shut down this system now?" +msgstr "現在關閉本系統?" + +#: ../patches/02_panel_logout.patch:782 +msgid "S_uspend" +msgstr "暫停(_S)" + +#: ../patches/02_panel_logout.patch:787 +msgid "_Hibernate" +msgstr "休眠(_H)" + +#: ../patches/02_panel_logout.patch:792 +msgid "_Restart" +msgstr "重新啟動(_R)" + +#: ../patches/02_panel_logout.patch:801 +msgid "_Shut Down" +msgstr "關機(_S)" + --- gnome-panel-2.27.91.orig/debian/maintfiles/changelog_unreleased +++ gnome-panel-2.27.91/debian/maintfiles/changelog_unreleased @@ -0,0 +1,2 @@ + + modified gnomezilla patch to fix opening evolution at the selected + date (also partially fix opening tasks) (Closes: #272777). --- gnome-panel-2.27.91.orig/debian/maintfiles/09_open_drawers_on_right_screen.patch.NOTWORKING +++ gnome-panel-2.27.91/debian/maintfiles/09_open_drawers_on_right_screen.patch.NOTWORKING @@ -0,0 +1,17 @@ +diff -p -u -5 -r1.82 panel-toplevel.c +--- gnome-panel/gnome-panel/panel-toplevel.c 2004/12/22 18:09:19 1.82 ++++ gnome-panel/gnome-panel/panel-toplevel.c 2005/01/06 04:12:41 +@@ -2468,10 +2468,13 @@ panel_toplevel_attach_to_widget (PanelTo + panel_toplevel_reverse_arrows (toplevel); + panel_toplevel_set_expand (toplevel, FALSE); + panel_toplevel_update_attach_orientation (toplevel); + panel_toplevel_update_hide_buttons (toplevel); + ++ gtk_window_set_screen (GTK_WINDOW (toplevel), ++ gtk_widget_get_screen (GTK_WIDGET (toplevel->priv->attach_toplevel))); ++ + if (toplevel->priv->state == PANEL_STATE_NORMAL) + panel_toplevel_push_autohide_disabler (toplevel->priv->attach_toplevel); + + gtk_widget_queue_resize (GTK_WIDGET (toplevel)); + } --- gnome-panel-2.27.91.orig/debian/maintfiles/improved_open_recent_doc_in_term.patch.NEEDTESTING +++ gnome-panel-2.27.91/debian/maintfiles/improved_open_recent_doc_in_term.patch.NEEDTESTING @@ -0,0 +1,34 @@ +--- gnome-panel/panel-recent.c.orig 2005-01-26 00:32:36.000000000 +0100 ++++ gnome-panel/panel-recent.c 2005-01-26 00:39:22.000000000 +0100 +@@ -49,6 +49,8 @@ + char *path; + char *quoted; + gboolean ret = TRUE; ++ GConfClient *client; ++ gchar *terminal_exec, *terminal_exec_arg; + + /* Don't allow suspicious looking URIs */ + if (uri [0] == '-') +@@ -62,13 +64,18 @@ + return FALSE; + } + ++ + str = g_string_new (""); + + if (app->requires_terminal) { +- /* FIXME: we should use their preferred terminal +- * maybe a multiscreen variant of gnome_execcute_terminal_shell? +- */ +- g_string_append_printf (str, "gnome-terminal -x %s", app->command); ++ client = panel_gconf_get_client (); ++ terminal_exec = gconf_client_get_string(client, "/desktop/gnome/applications/terminal/exec", NULL); ++ terminal_exec_arg = gconf_client_get_string(client, "/desktop/gnome/applications/terminal/exec_arg", NULL); ++ ++ g_string_append_printf (str, "%s %s %s", terminal_exec, terminal_exec_arg, app->command); ++ ++ g_free(terminal_exec); ++ g_free(terminal_exec_arg); + } else + str = g_string_append (str, app->command); + --- gnome-panel-2.27.91.orig/debian/maintfiles/clock_applet_evo_open.patch +++ gnome-panel-2.27.91/debian/maintfiles/clock_applet_evo_open.patch @@ -0,0 +1,200 @@ +diff -u -r1.10 calendar-client.c +--- applets/clock/calendar-client.c 31 Aug 2004 08:18:34 -0000 1.10 ++++ applets/clock/calendar-client.c 27 Dec 2004 09:07:15 -0000 +@@ -529,18 +529,6 @@ + return g_strdup (icalproperty_get_description (prop)); + } + +-static char * +-get_ical_url (icalcomponent *ical) +-{ +- icalproperty *prop; +- +- prop = icalcomponent_get_first_property (ical, ICAL_URL_PROPERTY); +- if (!prop) +- return NULL; +- +- return g_strdup (icalproperty_get_url (prop)); +-} +- + static inline GTime + get_ical_start_time (icalcomponent *ical, + icaltimezone *default_zone) +@@ -832,7 +820,6 @@ + null_safe_strcmp (a->summary, b->summary) == 0 && + null_safe_strcmp (a->description, b->description) == 0 && + null_safe_strcmp (a->color_string, b->color_string) == 0 && +- null_safe_strcmp (a->url, b->url) == 0 && + a->start_time == b->start_time && + a->due_time == b->due_time && + a->percent_complete == b->percent_complete && +@@ -850,7 +837,6 @@ + task_copy->summary = g_strdup (task->summary); + task_copy->description = g_strdup (task->description); + task_copy->color_string = g_strdup (task->color_string); +- task_copy->url = g_strdup (task->url); + task_copy->start_time = task->start_time; + task_copy->due_time = task->due_time; + task_copy->percent_complete = task->percent_complete; +@@ -872,9 +858,6 @@ + g_free (task->color_string); + task->color_string = NULL; + +- g_free (task->url); +- task->url = NULL; +- + task->percent_complete = 0; + } + +@@ -888,7 +871,6 @@ + task->summary = get_ical_summary (ical); + task->description = get_ical_description (ical); + task->color_string = get_source_color (source->source); +- task->url = get_ical_url (ical); + task->start_time = get_ical_start_time (ical, default_zone); + task->due_time = get_ical_due_time (ical, default_zone); + task->percent_complete = get_ical_percent_complete (ical); +@@ -1980,25 +1962,3 @@ + e_cal_modify_object (esource, ical, CALOBJ_MOD_ALL, NULL); + } + +-gboolean +-calendar_client_launch_editor (CalendarClient *client, +- CalendarEventType event_type, +- GdkScreen *screen, +- GError **error) +-{ +- char *command_line; +- gboolean retval; +- +- g_return_val_if_fail (CALENDAR_IS_CLIENT (client), FALSE); +- g_return_val_if_fail (event_type == CALENDAR_EVENT_APPOINTMENT || +- event_type == CALENDAR_EVENT_TASK, FALSE); +- +- command_line = g_strdup_printf ("evolution -c %s", +- event_type == CALENDAR_EVENT_APPOINTMENT ? "calendar" : "tasks"); +- +- retval = gdk_spawn_command_line_on_screen (screen, command_line, error); +- +- g_free (command_line); +- +- return retval; +-} +diff -u -r1.4 calendar-client.h +--- applets/clock/calendar-client.h 19 Jul 2004 19:11:14 -0000 1.4 ++++ applets/clock/calendar-client.h 27 Dec 2004 09:07:15 -0000 +@@ -27,7 +27,6 @@ + #define __CALENDAR_CLIENT_H__ + + #include +-#include + + G_BEGIN_DECLS + +@@ -90,7 +89,6 @@ + char *summary; + char *description; + char *color_string; +- char *url; + GTime start_time; + GTime due_time; + guint percent_complete; +@@ -139,10 +137,6 @@ + char *task_uid, + gboolean task_completed, + guint percent_complete); +-gboolean calendar_client_launch_editor (CalendarClient *client, +- CalendarEventType event_type, +- GdkScreen *screen, +- GError **error); + + void calendar_event_free (CalendarEvent *event); + +--- applets/clock/clock.c 2005-01-25 01:37:50.000000000 +0100 ++++ applets/clock/clock.c.mod 2005-01-25 01:42:25.000000000 +0100 +@@ -545,7 +545,6 @@ + TASK_COLUMN_COMPLETED_TIME, + TASK_COLUMN_OVERDUE_ATTR, + TASK_COLUMN_COLOR, +- TASK_COLUMN_URL, + N_TASK_COLUMNS + }; + +@@ -625,7 +624,6 @@ + TASK_COLUMN_COMPLETED, task->percent_complete == 100, + TASK_COLUMN_COMPLETED_TIME, task->completed_time, + TASK_COLUMN_COLOR, task->color_string, +- TASK_COLUMN_URL, task->url, + -1); + + g_free (percent_complete_text); +@@ -808,17 +806,21 @@ + GtkTreeViewColumn *column, + ClockData *cd) + { +- GError *err = NULL; + GtkTreeIter iter; +- char *uri; +- ++ gchar *command_line; ++ gchar *uid; ++ + gtk_tree_model_get_iter (GTK_TREE_MODEL (cd->tasks_model), &iter, path); + gtk_tree_model_get (GTK_TREE_MODEL (cd->tasks_model), &iter, +- TASK_COLUMN_URL, &uri, -1); +- +- if (uri) +- gnome_url_show (uri, &err); +- ++ TASK_COLUMN_UID, &uid, -1); ++ ++ command_line = g_strdup_printf ("evolution task:%s", uid); ++ ++ gdk_spawn_command_line_on_screen (gtk_widget_get_screen (cd->calendar), command_line, NULL); ++ ++ g_free (command_line); ++ g_free (uid); ++ + return TRUE; + } + +@@ -909,7 +911,6 @@ + G_TYPE_LONG, /* completed time */ + PANGO_TYPE_ATTR_LIST, /* summary text attributes */ + G_TYPE_STRING, /* color */ +- G_TYPE_STRING /* url */ + }; + + cd->tasks_model = gtk_list_store_newv (N_TASK_COLUMNS, column_types); +@@ -1137,14 +1138,23 @@ + + static void + calendar_day_activated (ClockData *cd) +-{ +- /* FIXME: should be able to launch the editor for +- * the specific day +- */ +- calendar_client_launch_editor (cd->client, +- CALENDAR_EVENT_APPOINTMENT, +- gtk_widget_get_screen (cd->calendar), +- NULL); ++{ ++ guint day; ++ guint year; ++ guint month; ++ ++ GDate *date; ++ gchar command_line[40]; ++ ++ gtk_calendar_get_date (GTK_CALENDAR(cd->calendar), &year, &month, &day); ++ date = g_date_new (); ++ g_date_set_dmy (date, day, month + 1, year); ++ ++ g_date_strftime (command_line, sizeof (command_line), "evolution -c calendar date:%x", date); ++ gdk_spawn_command_line_on_screen (gtk_widget_get_screen (cd->calendar), command_line, NULL); ++ g_date_free (date); ++ ++ return; + } + + static void