--- lightdm-1.0.1.orig/debian/lightdm-greeter-session +++ lightdm-1.0.1/debian/lightdm-greeter-session @@ -0,0 +1,36 @@ +#!/bin/sh +# -*- Mode: sh; indent-tabs-mode: nil; tab-width: 4 -*- +# +# Copyright (C) 2011 Canonical Ltd +# Author: Michael Terry +# +# 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, version 3 of the License. +# +# See http://www.gnu.org/copyleft/gpl.html the full text of the license. + +# This wrapper merely ensures that dbus-daemon lives only as long as this +# script does. Otherwise, it's very easy for dbus-daemon to be autolaunched +# and detached from the greeter. + +trap cleanup TERM EXIT + +cleanup() +{ + trap - TERM EXIT + if [ -n "$DBUS_SESSION_BUS_PID" ]; then + kill "$DBUS_SESSION_BUS_PID" + fi + if [ -n "$CMD_PID" ]; then + kill "$CMD_PID" + fi + exit 0 +} + +eval `dbus-launch --sh-syntax` + +exec $@ & +CMD_PID=$! +wait $CMD_PID +CMD_PID= --- lightdm-1.0.1.orig/debian/lightdm.lightdm-autologin.pam +++ lightdm-1.0.1/debian/lightdm.lightdm-autologin.pam @@ -0,0 +1,11 @@ +#%PAM-1.0 +auth requisite pam_nologin.so +auth required pam_env.so readenv=1 +auth required pam_env.so readenv=1 envfile=/etc/default/locale +auth required pam_permit.so +@include common-account +session [success=ok ignore=ignore module_unknown=ignore default=bad] pam_selinux.so close +session required pam_limits.so +@include common-session +session [success=ok ignore=ignore module_unknown=ignore default=bad] pam_selinux.so open +@include common-password --- lightdm-1.0.1.orig/debian/lightdm.init +++ lightdm-1.0.1/debian/lightdm.init @@ -0,0 +1,112 @@ +#!/bin/sh + +# Largely adapted from xdm's init script: +# Copyright 1998-2002, 2004, 2005 Branden Robinson . +# Copyright 2006 Eugene Konev +# +# This is free software; you may redistribute it and/or modify +# it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, +# or (at your option) any later version. +# +# This 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 with +# the Debian operating system, in /usr/share/common-licenses/GPL; if +# not, write to the Free Software Foundation, Inc., 51 Franklin Street, +# Fifth Floor, Boston, MA 02110-1301, USA. + +### BEGIN INIT INFO +# Provides: lightdm +# Required-Start: $local_fs $remote_fs +# Required-Stop: $local_fs $remote_fs +# Should-Start: $named acpid hal +# Should-Stop: $named +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Start lightdm +### END INIT INFO + +set -e + +HEED_DEFAULT_DISPLAY_MANAGER= +# To start lightdm even if it is not the default display manager, change +# HEED_DEFAULT_DISPLAY_MANAGER to "false." +# Also overridable from command line like: +# HEED_DEFAULT_DISPLAY_MANAGER=false /etc/init.d/lightdm start +[ -z "$HEED_DEFAULT_DISPLAY_MANAGER" ] && HEED_DEFAULT_DISPLAY_MANAGER=true + +DEFAULT_DISPLAY_MANAGER_FILE=/etc/X11/default-display-manager + +PATH=/bin:/usr/bin:/sbin:/usr/sbin +DAEMON=/usr/bin/lightdm +PIDFILE=/var/run/lightdm.pid + +if [ -r /etc/default/locale ]; then + . /etc/default/locale + export LANG LANGUAGE +fi + +test -x $DAEMON || exit 0 + +. /lib/lsb/init-functions + +SSD_START_ARGS="--pidfile $PIDFILE --name $(basename $DAEMON) --startas $DAEMON -- -d" +SSD_STOP_ARGS="--pidfile $PIDFILE --name $(basename $DAEMON) --retry TERM/5/TERM/5" + +case "$1" in + start) + if [ "$HEED_DEFAULT_DISPLAY_MANAGER" = "true" ] && + [ -e $DEFAULT_DISPLAY_MANAGER_FILE ] && + [ "$(cat $DEFAULT_DISPLAY_MANAGER_FILE)" != "/usr/bin/lightdm" ]; then + echo "Not starting X display manager (lightdm); it is not the default" \ + "display manager." + else + log_daemon_msg "Starting X display manager" "lightdm" + start-stop-daemon --start --quiet $SSD_START_ARGS \ + || log_progress_msg "already running" + log_end_msg 0 + fi + ;; + + restart) + [ -f $PIDFILE ] && /etc/init.d/lightdm stop + [ -f $PIDFILE ] && exit 1 + /etc/init.d/lightdm start + ;; + + stop) + log_daemon_msg "Stopping X display manager" "lightdm" + if ! [ -f $PIDFILE ]; then + log_progress_msg "not running ($PIDFILE not found)" + else + start-stop-daemon --stop --quiet $SSD_STOP_ARGS + SSD_RES=$? + if [ $SSD_RES -eq 1 ]; then + log_progress_msg "not running" + fi + if [ $SSD_RES -eq 2 ]; then + log_progress_msg "not responding to TERM signals" + else + if [ -f $PIDFILE ]; then + log_progress_msg "(removing stale $PIDFILE)" + rm $PIDFILE + fi + fi + fi + log_end_msg 0 + ;; + force-reload) + /etc/init.d/lightdm restart + ;; + + *) + echo "Usage: /etc/init.d/lightdm {start|stop|restart|force-reload}" + exit 1 + ;; +esac + +exit 0 --- lightdm-1.0.1.orig/debian/source_lightdm.py +++ lightdm-1.0.1/debian/source_lightdm.py @@ -0,0 +1,13 @@ +import os +import re + +import apport.packaging +import apport.hookutils + +def add_info(report, ui): + + report["Log"] = apport.hookutils.read_file("/var/log/lightdm/:0.log") + report["LightdmLog"] = apport.hookutils.read_file("/var/log/lightdm/lightdm.log") + report["GreeterLog"] = apport.hookutils.read_file("/var/log/lightdm/:0-greeter.log") + report["XorgLog"] = apport.hookutils.read_file("/var/log/Xorg.0.log") + --- lightdm-1.0.1.orig/debian/lightdm.prerm +++ lightdm-1.0.1/debian/lightdm.prerm @@ -0,0 +1,58 @@ +#!/bin/bash +# Debian lightdm package pre-removal script +# based on xdm script +# Copyright 2001 Branden Robinson. +# Licensed under the GNU General Public License, version 2. See the file +# /usr/share/common-licenses/GPL or . +# Acknowlegements to Stephen Early, Mark Eichin, and Manoj Srivastava. +# based on gdm pre-removal script + +set -e + +THIS_PACKAGE=lightdm +DAEMON=/usr/bin/lightdm + +DEFAULT_DISPLAY_MANAGER_FILE=/etc/X11/default-display-manager + +if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then + if [ -e /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule + # disown this question + db_unregister shared/default-x-display-manager + # does the question still exist? + if db_get shared/default-x-display-manager; then + db_metaget shared/default-x-display-manager owners + db_subst shared/default-x-display-manager choices "$RET" + db_get shared/default-x-display-manager + # are we removing the currently selected display manager? + if [ "$THIS_PACKAGE" = "$RET" ]; then + if [ -e "$DEFAULT_DISPLAY_MANAGER_FILE" ]; then + if db_get "$RET"/daemon_name; then + if [ "$(cat $DEFAULT_DISPLAY_MANAGER_FILE)" = "$RET" ]; then + rm "$DEFAULT_DISPLAY_MANAGER_FILE" + fi + else + if [ "$(cat $DEFAULT_DISPLAY_MANAGER_FILE)" = "$DAEMON" ]; then + rm "$DEFAULT_DISPLAY_MANAGER_FILE" + fi + fi + fi + # ask the user to choose a new default + db_fset shared/default-x-display-manager seen false + db_input critical shared/default-x-display-manager || true + db_go + # if the display manager file doesn't exist, write it with the path + # to the new default display manager + if [ ! -e $DEFAULT_DISPLAY_MANAGER_FILE ]; then + db_get shared/default-x-display-manager + db_get "$RET"/daemon_name + echo "$RET" > "$DEFAULT_DISPLAY_MANAGER_FILE" + fi + fi + fi + fi +fi + +#DEBHELPER# + +exit 0 --- lightdm-1.0.1.orig/debian/lightdm.postinst +++ lightdm-1.0.1/debian/lightdm.postinst @@ -0,0 +1,74 @@ +#!/bin/sh + +set -e + +if dpkg-maintscript-helper supports mv_conffile; then + dpkg-maintscript-helper mv_conffile \ + /etc/lightdm.conf \ + /etc/lightdm/lightdm.conf \ + 0.3.7-0ubuntu2 -- "$@" +fi + +. /usr/share/debconf/confmodule + +THIS_PACKAGE=lightdm +DEFAULT_DISPLAY_MANAGER_FILE=/etc/X11/default-display-manager + +# creating lightdm group if he isn't already there +if ! getent group lightdm >/dev/null; then + addgroup --system lightdm +fi + +# creating lightdm user if he isn't already there +if ! getent passwd lightdm >/dev/null; then + adduser --system --ingroup lightdm --home /var/lib/lightdm lightdm + usermod -c "Light Display Manager" lightdm + usermod -d "/var/lib/lightdm" lightdm + usermod -g "lightdm" lightdm + usermod -s "/bin/false" lightdm +fi + +# Creating nopasswdlogin group if he isn't already there. +# That enables the password-less login feature in the users-admin +# tool of the gnome-system-tools for users that belong to it, +# and which is working thanks to LightDM's PAM policy. +if ! getent group nopasswdlogin >/dev/null; then + addgroup --system nopasswdlogin +fi + +if [ -d /var/lib/lightdm ]; then + chown lightdm:lightdm /var/lib/lightdm + chmod 0750 /var/lib/lightdm +fi + +# debconf is not a registry, so we only fiddle with the default file if it +# does not exist +if ! [ -e "$DEFAULT_DISPLAY_MANAGER_FILE" ]; then + DEFAULT_DISPLAY_MANAGER= + if db_get shared/default-x-display-manager; then + DEFAULT_DISPLAY_MANAGER="$RET" + fi + if [ -n "$DEFAULT_DISPLAY_MANAGER" ]; then + DAEMON_NAME= + if db_get "$DEFAULT_DISPLAY_MANAGER"/daemon_name; then + DAEMON_NAME="$RET" + fi + if [ -z "$DAEMON_NAME" ]; then + # if we were unable to determine the name of the selected daemon (for + # instance, if the selected default display manager doesn't provide a + # daemon_name question), guess + DAEMON_NAME=$(which "$DEFAULT_DISPLAY_MANAGER" 2>/dev/null) + fi + if [ -n "$DAEMON_NAME" ]; then + echo "$DAEMON_NAME" > "$DEFAULT_DISPLAY_MANAGER_FILE" + fi + fi +fi + +# Registering the init scripts or starting the daemon may cause output to +# stdout, which can confuse debconf. +db_stop + +#DEBHELPER# + +exit 0 --- lightdm-1.0.1.orig/debian/lightdm.dirs +++ lightdm-1.0.1/debian/lightdm.dirs @@ -0,0 +1,2 @@ +/var/log/lightdm +/var/cache/lightdm --- lightdm-1.0.1.orig/debian/lightdm-gtk-greeter.prerm +++ lightdm-1.0.1/debian/lightdm-gtk-greeter.prerm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +if [ "$1" = "remove" ] ; then + update-alternatives --remove lightdm-gtk-greeter-config-derivative \ + /etc/lightdm/lightdm-gtk-greeter-ubuntu.conf +fi + +#DEBHELPER# + +exit 0 --- lightdm-1.0.1.orig/debian/copyright +++ lightdm-1.0.1/debian/copyright @@ -0,0 +1,76 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=59 +Name: LightDM +Maintainer: Robert Ancell +Source: https://launchpad.net/lightdm + +Files: * +Copyright: 2010, Robert Ancell +License: GPL-3+ + +Files: liblightdm-gobject/* liblightdm-qt/* +Copyright: 2010, Robert Ancell +License: LGPL-3+ + +Files: debian/* +Copyright: + 2010, Robert Ancell + 2010, Julien Lavergne +License: GPL-3+ + +Files: debian/*.config + debian/*.init +Copyright: + 1998-2002, 2004, 2005 Branden Robinson . + 2006 Eugene Konev +License: GPL-2+ + +License: GPL-3+ + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . +X-Comment: On Debian systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-3’. + +License: LGPL-3+ + This package is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 3 of the License, or (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + . + You should have received a copy of the GNU Lesser General Public + License along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 + USA +X-Comment: On Debian systems, the complete text of the GNU Lesser General + Public License can be found in `/usr/share/common-licenses/LGPL-3’. + +License: GPL-2+ + 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. +X-Comment: On Debian systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-2’. --- lightdm-1.0.1.orig/debian/lightdm-gtk-greeter.postinst +++ lightdm-1.0.1/debian/lightdm-gtk-greeter.postinst @@ -0,0 +1,20 @@ +#!/bin/sh + +set -e + +if dpkg-maintscript-helper supports mv_conffile; then + dpkg-maintscript-helper mv_conffile \ + /etc/lightdm/lightdm-gtk-greeter.conf \ + /etc/lightdm/lightdm-gtk-greeter-ubuntu.conf \ + 1.0.0-0ubuntu1 -- "$@" +fi + +if [ "$1" = "configure" ] ; then + update-alternatives --install /etc/lightdm/lightdm-gtk-greeter.conf \ + lightdm-gtk-greeter-config-derivative \ + /etc/lightdm/lightdm-gtk-greeter-ubuntu.conf 10 +fi + +#DEBHELPER# + +exit 0 --- lightdm-1.0.1.orig/debian/guest-account +++ lightdm-1.0.1/debian/guest-account @@ -0,0 +1,143 @@ +#!/bin/sh -e +# (C) 2008 Canonical Ltd. +# Author: Martin Pitt +# License: GPL v2 or later +# modified by David D Lowe and Thomas Detoux +# +# Setup user and temporary home directory for guest session. +# If this succeeds, this script needs to print the username as the last line to +# stdout. + +add_account () +{ + HOME=`mktemp -td guest-XXXXXX` + USER=`echo $HOME | sed 's/\(.*\)guest/guest/'` + + # if $USER already exists, it must be a locked system account with no existing + # home directory + if PWSTAT=`passwd -S "$USER"` 2>/dev/null; then + if [ "`echo \"$PWSTAT\" | cut -f2 -d\ `" != "L" ]; then + echo "User account $USER already exists and is not locked" + exit 1 + fi + PWENT=`getent passwd "$USER"` || { + echo "getent passwd $USER failed" + exit 1 + } + GUEST_UID=`echo "$PWENT" | cut -f3 -d:` + if [ "$GUEST_UID" -ge 500 ]; then + echo "Account $USER is not a system user" + exit 1 + fi + HOME=`echo "$PWENT" | cut -f6 -d:` + if [ "$HOME" != / ] && [ "${HOME#/tmp}" = "$HOME" ] && [ -d "$HOME" ]; then + echo "Home directory of $USER already exists" + exit 1 + fi + else + # does not exist, so create it + adduser --system --no-create-home --home / --gecos "Guest" --group --shell /bin/bash $USER || { + umount "$HOME" + rm -rf "$HOME" + exit 1 + } + fi + + # create temporary home directory + mount -t tmpfs -o mode=700 none "$HOME" || { rm -rf "$HOME"; exit 1; } + chown $USER:$USER "$HOME" + gs_skel=/etc/guest-session/skel + if [ -d "$gs_skel" ] && [ -n "`find $gs_skel -type f`" ]; then + cp -rT $gs_skel "$HOME" + else + cp -rT /etc/skel/ "$HOME" + fi + chown -R $USER:$USER "$HOME" + usermod -d "$HOME" "$USER" + + # + # setup session + # + + # disable screensaver, to avoid locking guest out of itself (no password) + su $USER <> "$HOME"/.config/autostart/"$service" + fi + done + + # Load restricted session + #dmrc='[Desktop]\nSession=guest-restricted' + #/bin/echo -e "$dmrc" > "$HOME"/.dmrc + + chown -R $USER:$USER "$HOME" + + # set possible local guest session preferences + if [ -f /etc/guest-session/prefs.sh ]; then + . /etc/guest-session/prefs.sh + fi + + echo $USER +} + +remove_account () +{ + USER=$1 + + PWENT=`getent passwd "$USER"` || { + echo "Error: invalid user $USER" + exit 1 + } + UID=`echo "$PWENT" | cut -f3 -d:` + HOME=`echo "$PWENT" | cut -f6 -d:` + + if [ "$UID" -ge 500 ]; then + echo "Error: user $USER is not a system user." + exit 1 + fi + + if [ "${HOME}" = "${HOME#/tmp/}" ]; then + echo "Error: home directory $HOME is not in /tmp/." + exit 1 + fi + + # kill all remaining processes + while ps h -u "$USER" >/dev/null; do + killall -9 -u "$USER" || true + sleep 0.2; + done + + umount "$HOME" || umount -l "$HOME" || true + rm -rf "$HOME" + + # remove leftovers in /tmp + find /tmp -mindepth 1 -maxdepth 1 -uid "$UID" | xargs rm -rf || true + + deluser --system "$USER" +} + +case "$1" in + add) + add_account + ;; + remove) + if [ -z $2 ] ; then + echo "Usage: $0 remove [account]" + exit 1 + fi + remove_account $2 + ;; + *) + echo "Usage: $0 add|remove" + exit 1 +esac --- lightdm-1.0.1.orig/debian/lightdm-gtk-greeter.postrm +++ lightdm-1.0.1/debian/lightdm-gtk-greeter.postrm @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +if dpkg-maintscript-helper supports mv_conffile; then + dpkg-maintscript-helper mv_conffile \ + /etc/lightdm/lightdm-gtk-greeter.conf \ + /etc/lightdm/lightdm-gtk-greeter-ubuntu.conf \ + 1.0.0-0ubuntu1 -- "$@" +fi + +#DEBHELPER# + +exit 0 --- lightdm-1.0.1.orig/debian/changelog +++ lightdm-1.0.1/debian/changelog @@ -0,0 +1,816 @@ +lightdm (1.0.1-0ubuntu6) oneiric; urgency=low + + * debian/patches/08_correct_ck_ref.patch: + - backported fix from Mikkel Kamstrup Erlandsen for a refcounting issue + which leads to sessions where unity can't start (lp: #851345) + + -- Sebastien Bacher Fri, 07 Oct 2011 13:57:44 +0200 + +lightdm (1.0.1-0ubuntu5) oneiric; urgency=low + + * Add debian/patches/00bzr_guest_session_wrapper.diff: Add back the guest + session wrapper part that was uploaded in 1.0.0-0ubuntu4. The patch was + correctly merged into trunk, but the 1.0 branch backport missed this + wrapper part and thus broke AppArmor protection entirely. (LP: #849027) + + -- Martin Pitt Fri, 07 Oct 2011 11:47:36 +0200 + +lightdm (1.0.1-0ubuntu4) oneiric; urgency=low + + * debian/patches/04_language_not_to_LANG.patch: + * debian/patches/04_dmrc_set_LANG_only.patch: + - Replace LANG disabling code with proper fix (LP: #868149) + * debian/patches/03_launch_dbus.patch: + * debian/patches/05_gdmflexiserver_not_in_PATH.patch: + - Refreshed + * debian/patches/06_accounts_service_timeout.patch: + - Fix D-Bus timeout when accounts service not installed (LP: #866035) + * debian/patches/07_long_password_crash.patch: + - Fix crash with long passwords (LP: #817186) + + -- Robert Ancell Thu, 06 Oct 2011 15:45:21 +1100 + +lightdm (1.0.1-0ubuntu3) oneiric; urgency=low + + * debian/patches/05_gdmflexiserver_not_in_PATH.patch: + - Make sure to insert our own utility path into PATH after PAM + sets PATH, not before. This ensures gdmflexiserver is present + in PATH and can be found by gnome-screensaver, gnome-shell, etc. + + -- Michael Terry Wed, 05 Oct 2011 09:05:31 -0400 + +lightdm (1.0.1-0ubuntu2) oneiric; urgency=low + + * debian/patches/04_language_not_to_LANG.patch: + Locale names based on AccountsService's "Language" key may not + go to $LANG, as that property is a language name, not a locale. + (LP: #864618). + + -- Gunnar Hjalmarsson Wed, 05 Oct 2011 09:49:15 +0200 + +lightdm (1.0.1-0ubuntu1) oneiric; urgency=low + + * New upstream release: + - GTK greeter now remembers last user + - GTK greeter now initializes i18n (LP: #862427) + - Start authentication for automatically selected user in GTK greeter + - Link liblightdm-qt against QtGui + - Fix liblightdm-qt crashing when face images are installed (LP: #850095) + - Set correct permissions on session log files (LP: #863119) + - Prefer a locale with a codeset over one without for setting LANG + (LP: #864618) + - Introduce a lightdm-guest-session-wrapper session command which MAC + systems like AppArmor and SELinux can use for attaching a restrictive + policy to guest sessions. + - Provide an AppArmor profile for guest session lockdown. + * debian/patches/01_guest_session_lockdown.patch: + - Applied upstream + + -- Robert Ancell Tue, 04 Oct 2011 19:58:25 +1100 + +lightdm (1.0.0-0ubuntu4) oneiric; urgency=low + + * Add 01_guest_session_lockdown.patch: Lock down guest session with an + AppArmor profile. This uses the very same approach as gdm-guest-session, + and copies the profile from it. (LP: #849027) + * 03_launch_dbus.patch: Refresh. + * debian/lightdm.install: Install AppArmor profile. + + -- Martin Pitt Fri, 30 Sep 2011 17:30:56 +0200 + +lightdm (1.0.0-0ubuntu3) oneiric; urgency=low + + * debian/patches/03_launch_dbus.patch: + - Fix patch applying in the wrong place + + -- Robert Ancell Thu, 29 Sep 2011 16:08:20 +1000 + +lightdm (1.0.0-0ubuntu2) oneiric; urgency=low + + * debian/lightdm-gtk-greeter.postinst, + debian/lightdm-gtk-greeter.postrm, + debian/lightdm-gtk-greeter.preinst: + - move the gtk-greeter conffile starting from 1.0.0-0ubuntu1 and not + 0.9.7-0ubuntu1 (the patch using 0.9.7-0ubuntu1 as a reference has + been integrated in 1.0.0-0ubuntu1 without being updated even if + 0.9.7-0ubuntu2 was already released). Ensure we do it now (LP: #861316) + + -- Didier Roche Wed, 28 Sep 2011 13:40:40 +0200 + +lightdm (1.0.0-0ubuntu1) oneiric; urgency=low + + [ Steve Langasek ] + * don't start on graphics-device-added; reintroducing this reverted the fix + for bug #615549 from maverick without explanation. + * clean up the completely illegible start rule for debian/lightdm.upstart, + killing off the unnecessary parentheses + * debian/lightdm.upstart: when lightdm is shut down by a runlevel call, + emit an upstart event that can be caught by plymouth so it can + distinguish between the DM shutting down for a runlevel change vs. other + causes. LP: #854329. + + [ Robert Ancell ] + * New upstream release. + [ 0.9.8 ] + - GetSeatForCookie and GetSessionForCookie are now deprecated. They + remain for now but use the XDG_SEAT_PATH and XDG_SESSION_PATH + environment variables instead. + - Change log filenames to be unique across different display types. + - Fix up script hooks, add regression tests for them + - Complete removal of X code from the core of LightDM, so it can better + support various display types + - Add ability to set the language of a user from the greeter (LP: #803858) + - Set LANG variable based on the user language + - Add language selector into GTK greeter (disabled by default) + - Allow TCP/IP connections if xserver-allow-tcp is true + - Allow lightdm --version to be run as non-root + - Automatically respond to PAM messages without prompts (LP: #783598) + - Create 'AddLocalXSeat' D-Bus method, and require root to use 'AddSeat' + - Fix multi-seat configuration picking the same display number (LP: #851362) + - Use correct D-Bus and power interface in liblightdm-qt (LP: #852803) + - Run pam_setcred inside the session process so pam_group works + (LP: #851347) + - Make sure one session is always selected in the GTK greeter (LP: #819177) + [ 1.0.0 ] + - Explicitly grab keyboard focus in GTK greeter + - Fix removed power and a11y menu items in GTK greeter + - Put system binary directory into path when running in test mode + (LP: #860003) + - Call pam_getenvlist after pam_setcred + + [ Lionel Le Folgoc ] + * Make the gtk greeter easily themable by derivatives: (LP: #845549) + - rename lightdm-gtk-greeter.conf to lightdm-gtk-greeter-ubuntu.conf, + and handle the move in maintainer scripts. + - manage /etc/lightdm/lightdm-gtk-greeter.conf with update-alternatives, + by default it uses /etc/lightdm/lightdm-gtk-greeter-ubuntu.conf with a + very low priority. + * debian/control: lightdm-gtk-greeter provides lightdm-gtk-greeter-config. + + -- Robert Ancell Wed, 28 Sep 2011 16:00:20 +1000 + +lightdm (0.9.7-0ubuntu1) oneiric; urgency=low + + * New upstream release. + - Set PAM_TTY to the display name, not the tty device (LP: #851055) + + -- Robert Ancell Fri, 16 Sep 2011 09:39:22 +1000 + +lightdm (0.9.6-0ubuntu1) oneiric; urgency=low + + * New upstream release: + - Only unlock displays if switched to from greeter + - Make log file not system readable + - Write ~/.Xauthority inside the session process so it cannot be hijacked + - Set PAM_TTY and PAM_XDISPLAY when opening PAM session + - Add VNC server support + - Do not write ~/.dmrc and ~/.Xauthority as root. [CVE-2011-3349] + * debian/patches/00upstream_unlock_fix.patch: + * debian/patches/04_dont_write_files_as_root.patch: + - Applied upstream + + -- Robert Ancell Thu, 15 Sep 2011 17:32:25 +1000 + +lightdm (0.9.5-0ubuntu2) oneiric; urgency=low + + * debian/lightdm.config: When installing from scratch as part of a release + upgrade, default to lightdm, otherwise ask. (LP: #806559) + * Add 04_dont_write_files_as_root.patch: Do not write ~/.dmrc and + ~/.Xauthority as root. [CVE-2011-3349] + * Add 00upstream_unlock_fix.patch: Only unlock displays if switched to from + greeter. Cherrypicked from upstream r1137. (LP: #844274) + + -- Martin Pitt Thu, 15 Sep 2011 08:52:24 +0200 + +lightdm (0.9.5-0ubuntu1) oneiric; urgency=low + + [ Steve Langasek ] + * Update upstart job to use current start condition lifted from gdm, + and to check runlevels instead of /proc/cmdline so it's possible to + start lightdm after switching out of recovery mode. LP: #803513. + + [ Didier Roche ] + * debian/patches/01_transition_gnome_ubuntu_desktop.patch: + natty-oneiric session name upgrade: + - transition from unity-2d -> ubuntu-2d + - transition from gnome-2d -> gnome-fallback + + [ Robert Ancell ] + * New upstream release: + [0.9.5] + - Use accounts service in the daemon if it is available + - Correctly load seat type in multi seat configuration + - Add display-setup, session-setup and session-cleanup scripting hooks + - Fix cancel button in GTK greeter (LP: #819240) + - Fix line through GTK greeter menu items + - Exit daemon if a seat fails which has exit-on-failure set to true + - Add HasGuestAccount property to seat D-Bus interface (LP: #835084) + - Fix XDMCP authorization + - Update man file + - Emit upstart events (LP: #715094) + [0.9.4] + - lightdm-set-defaults enables tweaking the default session and chosen + greeter for lightdm. This is useful for derivatives waiting to not ship + the whole configuration file of lightdm + - Fix crash in GTK+ greeter when a user is added + - Move xsessions-directory and xgreeters-directory from [SeatDefaults] to + [LightDM]. This is a configuration break, but making it on the assumption + that these settings are not likely to have been overridden. + - Fix fallback from org.freedesktop.Accounts to passwd format + - Fix duplicate user entries being shown when using passwd file + - Add AddSeat D-Bus method for adding dynamic seats + - Added a dm-tool program that allows user switching and adding seats + - Allow remote X servers, e.g. launched using dm-tool add-nested-seat + - Fix bug where sessions were started when the greeter quit and the user + hadn't been authorized. + - Fix bug where sessions used the seat bus name + - Don't allow autologin-username to be set to empty + - Fix bug where PAM session was not opened before writing to home directory + - Fix crash when failing to write X authority + + -- Robert Ancell Wed, 07 Sep 2011 16:09:53 +1000 + +lightdm (0.9.3-0ubuntu8) oneiric; urgency=low + + * debian/patches/series: + - Add patch from last commit to actually apply. Ahem. + * debian/rules: + - Make greeter wrapper executable + + -- Michael Terry Thu, 25 Aug 2011 16:20:00 -0400 + +lightdm (0.9.3-0ubuntu7) oneiric; urgency=low + + * debian/install, debian/lightdm-greeter-session, + debian/patches/03_launch_dbus.patch: + - Add patch and wrapper script to launch dbus for the greeter so that + we can safely kill it when the greeter ends. + + -- Michael Terry Wed, 24 Aug 2011 15:34:07 -0400 + +lightdm (0.9.3-0ubuntu6) oneiric; urgency=low + + * Backport r1065 to use account service instead of .dmrc (lp: #823718), + should fix the session not being correct remembered (lp: #818201) + + -- Sebastien Bacher Tue, 23 Aug 2011 16:21:59 +0200 + +lightdm (0.9.3-0ubuntu5) oneiric; urgency=low + + * Backport potfiles.in fix from trunk + * debian/lightdm.install: install dm-tool (seat management utility) + + -- Sebastien Bacher Thu, 18 Aug 2011 15:59:45 +0200 + +lightdm (0.9.3-0ubuntu4) oneiric; urgency=low + + * Updated to current trunk, that's a candidate version version for the next + update, it fixes those issues: + - login doesn't work for ecryptfs users (lp: #823775, #824594) + - "lightdm-gtk-greeter segfaults in get_user_iter when adding a new user" + (lp: #822470) + - fix fallback from org.freedesktop.Accounts to passwd format (lp: #817835) + - empty autologin-user should not be passed to pam (lp: #817581) + * debian/control.in: + - build-depends on quilt, it's needed with source v1 + - don't build-depends on valac, vala is not used in the current version + * debian/lightdm.install: + - install the manpages as well + * debian/lightdm.manpages: + - dropped, it's installed by the upstream make install + * debian/rules: + - use the quilt rule + * debian/source/format: + - use source v1, it works better with vcs workflows + + -- Sebastien Bacher Thu, 18 Aug 2011 15:29:42 +0200 + +lightdm (0.9.3-0ubuntu3) oneiric; urgency=low + + * debian/control: stop forcing the unity-greeter recommends (lp: #824299) + + -- Sebastien Bacher Thu, 11 Aug 2011 23:21:51 +0200 + +lightdm (0.9.3-0ubuntu2) oneiric; urgency=low + + * Backport mterry's changes to the gdmflexiserver functionnality + * debian/control: default to the unity greeter (lp: #809710) + * debian/lightdm.install: install the new files + + [ Didier Roche ] + * Cherry-pick from upstream: + - lightdm-set-defaults enables tweaking the default session and chosen + greeter for lightdm. This is useful for derivatives waiting to not ship + the whole configuration file of lightdm + - refreshed translations + * debian/rules: + - set "ubuntu" as the default session (unable to login for people who don't + have a .dmrc, sorry for the kittens…) + + -- Sebastien Bacher Wed, 10 Aug 2011 18:34:03 +0200 + +lightdm (0.9.3-0ubuntu1) oneiric; urgency=low + + [ Sebastien Bacher ] + * New upstream version + * debian/control: + - build-depends on dh-translations + - build with the current vala + - demote the greeter depends back to a recommend, lightdm can be use to + connect to remote displays and doesn't need a local greeter + - lightdm depends on dbus (lp: #822824) + - liblightdm-gobject recommends accountsservice (lp: #822863) + * debian/liblightdm-gobject-1-0.symbols: + - track library symbols + * debian/lightdm.install: + - ship the translations + * debian/lightdm.preinst: + - fix missing dh token + * debian/rules: + - reorder rules to work with new dh versions + - stop the build if the liblightdm-gobject symbols are outdated + - use dh-translations to generate the translations template + * debian/source_lightdm.py: + - get bug informations for apport, thanks Pedro Villavicencio (lp: #819954) + + [ Didier Roche ] + * debian/watch: + - fix debian/watch to get lightdm + * debian/patches/01_transition_gnome_ubuntu_desktop.patch: + - transition so that gnome.desktop is now move to ubuntu.desktop as the main + session. We need that for transitionning to the next step (post LTS) where + gnome-shell.desktop will be renamed to gnome.desktop + + -- Sebastien Bacher Tue, 09 Aug 2011 18:21:07 +0200 + +lightdm (0.9.2-0ubuntu4) oneiric; urgency=low + + * debian/control: depends on the greeters rather than recommends, seems some + users still get no greeter after upgrade otherwise + + -- Sebastien Bacher Wed, 27 Jul 2011 19:10:47 +0200 + +lightdm (0.9.2-0ubuntu3) oneiric; urgency=low + + * Fix lightdm to conflict liblightdm-gobject-0-0 and liblightdm-qt-0-0, + so that old greeters are removed on upgrade + - update debian/control + + -- Chris Coulson Tue, 26 Jul 2011 23:26:49 +0100 + +lightdm (0.9.2-0ubuntu2) oneiric; urgency=low + + * debian/control: + - recommends the preferred greeter before a virtual one + - let the new gtk greeter provide the old example named one for easier + upgrade + + -- Sebastien Bacher Tue, 26 Jul 2011 21:38:25 +0200 + +lightdm (0.9.2-0ubuntu1) oneiric; urgency=low + + * New upstream release + [0.9.0] + - Fix invalid XAUTHORITY variable being set for second X server. + - Fix bug where switching users created X servers without VTs + - Release a VT when the X server on it stops + - Greeters are now just standard X sessions that are stored in + /usr/share/xgreeters. + - Drop most of the configure options, they aren't necessary + - Config changes: + - Major reorginisation of configuration to make it easier to configure and + understand. Users should set [SeatDefaults] section with settings for + all seats, and can override each setting in a per seat configuration. + - Default seats are now specified using a [Seat:] section. If no + seats are specified then one is started. This can be overridden by + setting start-default-seat=false in [LightDM]. + - Support setting autologin user to guest account + - Split the user accounts configuration into /etc/lightdm/users.conf so + the main config can be private. + - The default user session is now "default". Distributions should put a + symlink to their chosen default or set one in lightdm.conf. + - XDMCP keys now stored in keys.conf + - liblightdm API changes: + - Both libraries are now version 1 and have API and ABI guarantees. + - Face images are now local paths not URIs + - liblightdm-gobject now uses lightdm_ prefix instead of ldm_ + - Non-greeter functions are now moved out of the Greeter class + - connect_to_server() is now called connect_sync and blocks until + completion. + - start_session() is now called start_session_sync and blocks until + completion. The quit signal is removed, and the greeter should quit if + this method returns TRUE. + - login() is now called authenticate() + - Greeters now have hints instead of configuration (greeters should load + their own configuration from /etc/lightdm if they need it). + - liblightdm-gobject uses AccountsService if it is available + - Added regression tests for liblightdm-qt + - D-Bus API changes: + - Expose Seats and Sessions on org.freedesktop.DisplayManager + - Add a CanSwitch property + - Rename ShowGreeter() to SwitchToGreeter() + - Greeter changes: + - Drop "example" from the name of the GTK+ and Qt greeters and make them + official default greeters. + - Use GTK3 for GTK+ greeter. + - Removed the Vala and Python GTK+ greeters, they weren't being well + maintained. + [0.9.1] + - Fix up translation build system + - Add a --with-greeter-user configure option + - Fix greeter-user configuration not being used + - Abort greeter if attempted to be run as root and greeter-user set + - Fix setting session in GTK+ greeter + [0.9.2] + - Fix annotation and Vala bindings for getting the UserList singleton + - Fix GTK+ greeter error label not being shown + - Don't set SIGQUIT to ignore in child processes + - Reworked the PAM code as ecryptfs users weren't able to log in. They + can now but not sure what changed to fix that!? + * debian/control: + - Build depend on libgtk3.0-dev, not libgtk2.0-dev + - Drop obsolete greeters, use new ones + - lightdm conflicts with liblightdm-gobject-1 and liblightdm-qt-1 so old + greeters will be removed. + - Update versions of libraries + * debian/lightdm.conf: + - Removed, no longer needs configuration + * debian/patches/01_resize_grip.patch: + - Dropped, not required anymore + + -- Robert Ancell Tue, 26 Jul 2011 19:19:00 +1000 + +lightdm (0.4.4-0ubuntu1) oneiric; urgency=low + + * New upstream release + - Fix failure to accept XDMCP connections due to invalid assert. + - Allow minimum-display-number to be set in lightdm.conf and on the command + line. + - Session X authority now written to ~/.Xauthority by default. It can be + configured to run from the system location by setting + user-authority-in-system-dir=true in lightdm.conf. + - When using system authority the authority can be updated by the user. + (LP: #795046) + - Written X authority files now checks hostname and display number. + - Enironment is no longer passed through to X servers and sessions, this is + no longer required now PAM works correctly. + - liblightdm API changes: + - Drop ldm_greeter_get_is_first() - it was added for testing and doesn't + work well. + - Fix more errors where authentication messages from previous sessions could + be confused with new sessions. + - Added XDMCP regression tests. + * debian/lightdm.conf: + - Updated to latest format + + -- Robert Ancell Fri, 15 Jul 2011 13:35:49 +1000 + +lightdm (0.4.3-0ubuntu1) oneiric; urgency=low + + * New upstream release + + -- Robert Ancell Wed, 13 Jul 2011 15:06:13 +1000 + +lightdm (0.4.2-0ubuntu2) oneiric; urgency=low + + * debian/Xsession: + - Correctly load ~/.Xresource + + -- Robert Ancell Wed, 06 Jul 2011 09:29:15 +1000 + +lightdm (0.4.2-0ubuntu1) oneiric; urgency=low + + * New upstream release + - Fixes (LP: #798277) + * debian/lightdm.upstart: + - Don't source /etc/environment or /etc/default/locale - this is done in PAM + * debian/Xsession: + - Handle X resource directory being empty (LP: #800193) + + -- Robert Ancell Tue, 05 Jul 2011 15:22:12 +1000 + +lightdm (0.4.1-0ubuntu1) oneiric; urgency=low + + * New upstream release + - Fixes (LP: #793366) + * debian/lightdm.conf: + * debian/guest-session-cleanup.sh: + * debian/guest-session-setup.sh: + - Enable guest session + + -- Robert Ancell Thu, 30 Jun 2011 17:04:25 +0100 + +lightdm (0.4.0-0ubuntu7) oneiric; urgency=low + + * debian/Xsession: + - Correctly load Xresources (LP: #800193) + + -- Robert Ancell Mon, 27 Jun 2011 09:43:49 +0100 + +lightdm (0.4.0-0ubuntu6) oneiric; urgency=low + + * debian/Xsession: + - Set required variables to make Xsession.d scripts work (LP: #800192) + + -- Robert Ancell Mon, 27 Jun 2011 00:03:12 +1000 + +lightdm (0.4.0-0ubuntu5) oneiric; urgency=low + + * debian/lightdm.lightdm-autologin.pam, debian/rules: + - Actually install autologin PAM configuration (LP: #797669). + + -- Colin Watson Fri, 17 Jun 2011 12:52:33 +0100 + +lightdm (0.4.0-0ubuntu4) oneiric; urgency=low + + * debian/control: don't depends on gnome-icon-theme-full, the purpose of the + binary is to not be installed by default, icons should be moved rather + + -- Sebastien Bacher Fri, 17 Jun 2011 11:28:05 +0200 + +lightdm (0.4.0-0ubuntu3) oneiric; urgency=low + + * debian/control: + - Make GTK greeters depend on gnome-icon-theme-full (LP: #796793) + * debian/Xsession: + * debian/lightdm.conf: + - Load profile and X resources when running session (LP: #794315) + (LP: #795083) + + -- Robert Ancell Fri, 17 Jun 2011 15:26:59 +1000 + +lightdm (0.4.0-0ubuntu2) oneiric; urgency=low + + * debian/copyright: + - Drop copyright reference to obsolete ck-connector.[ch] + * debian/patches/02_disable_tests.patch: + - Disable regression tests as they're not running on the buildd's correctly + + -- Robert Ancell Fri, 17 Jun 2011 13:55:12 +1000 + +lightdm (0.4.0-0ubuntu1) oneiric; urgency=low + + * New upstream release + * debian/control: + - Add build-depends on dbus for regression tests + - lightdm pre-depends on dpkg (>= 1.15.7.2) to get dpkg-maintscript-helper + support + - Drop build-depends on libdbus-glib-1-dev, libck-connector-dev + * debian/lightdm.conf: + - Update to latest format + * debian/lightdm.postinst: + * debian/lightdm.postrm: + * debian/lightdm.preinst: + - Move config file from /etc/lightdm.conf to /etc/lightdm/lightdm.conf + * debian/lightdm-autologin.pam: + - Add autologin PAM session + * debian/patches/01_resize_grip.patch: + - Don't show resize grip on window + * debian/patches/01_handle_all_signals.patch: + * debian/patches/02_process_exit.patch: + - Applied upstream + + -- Robert Ancell Fri, 17 Jun 2011 12:31:14 +1000 + +lightdm (0.3.7-0ubuntu2) oneiric; urgency=low + + * debian/control: + - Add ${python:Depends} and required dependencies for + lightdm-greeter-example-python-gtk package (LP: #787409) + * debian/patches/01_handle_all_signals.patch: + - Correctly handle signals from external processes (LP: #789389) + * debian/patches/02_process_exit.patch: + - Fix crash when child processes quit (LP: #795050) + + -- Robert Ancell Fri, 10 Jun 2011 16:24:56 +1000 + +lightdm (0.3.7-0ubuntu1) oneric; urgency=low + + * New upstream release + + -- Robert Ancell Mon, 30 May 2011 20:22:39 +1000 + +lightdm (0.3.6-0ubuntu1) oneiric; urgency=low + + * New upstream release + * debian/lightdm.conf: + - Start display on active VT + + -- Robert Ancell Mon, 30 May 2011 16:43:37 +1000 + +lightdm (0.3.5-0ubuntu1) oneiric; urgency=low + + * New upstream release + + -- Robert Ancell Tue, 24 May 2011 15:38:04 +1000 + +lightdm (0.3.4-0ubuntu1) oneiric; urgency=low + + * New upstream release + + -- Robert Ancell Fri, 20 May 2011 14:56:09 +1000 + +lightdm (0.3.3-0ubuntu1) natty; urgency=low + + * New upstream release + * debian/lightdm-greeter-example-gtk.install: + - Install .ui file + + -- Robert Ancell Tue, 10 May 2011 17:45:50 +0200 + +lightdm (0.3.2-0ubuntu1) natty; urgency=low + + * New upstream release: + * debian/lightdm-greeter-*.install: + - Use new binary names + * debian/lightdm.conf: + - Start display on VT 7 + + -- Robert Ancell Thu, 21 Apr 2011 15:31:24 +1000 + +lightdm (0.3.0-0ubuntu1) natty; urgency=low + + * New upstream release + * debian/control: + - Add build-depends on valac + - Drop build-depends on libwebkitgtk-dev + - Rename gir1.0-lightdm-0 to gir1.2-lightdm-0 + - Webkit engine and theme dropped + - Merge theme and engines into one package + - Add vala-gtk, python-gtk and qt greeters + + -- Robert Ancell Sat, 16 Apr 2011 18:22:50 +1000 + +lightdm (0.2.3-0ubuntu2) natty; urgency=low + + * debian/control: + - Fix Vcs-Bzr link + + -- Robert Ancell Fri, 14 Jan 2011 14:44:48 -0600 + +lightdm (0.2.3-0ubuntu1) natty; urgency=low + + * New upstream release + * debian/control: + - Build depend on libwebkitgtk-dev + + -- Robert Ancell Fri, 14 Jan 2011 14:39:15 -0600 + +lightdm (0.2.2-0ubuntu2) natty; urgency=low + + * debian/copyright: + - Update copyright for liblightdm-gobject and liblightdm-qt + + -- Robert Ancell Wed, 15 Dec 2010 10:16:16 +1100 + +lightdm (0.2.2-0ubuntu1) natty; urgency=low + + * New upstream release + * debian/copyright: + - Update copyright for src/ck-connector.[ch] + * debian/liblightdm-gobject-0-dev: + - .vapi file has moved location + * debian/lightdm.upstart: + - Tidy up upstart config + * debian/rules: + - Compile with --with-greeter-user=lightdm + + -- Robert Ancell Thu, 09 Dec 2010 11:45:44 +1100 + +lightdm (0.2.1-0ubuntu1) natty; urgency=low + + [ Julien Lavergne ] + * debian/lightdm.{config,pam,postinst,postrm,prerm,upstart,init} + - Add configuration based on gdm and xdm ones. + * debian/rules: + - Use dh_installinit --no-start + - Remove .la and .a files. + - Pass --list-missing to dh_install. + - Don't use --with quilt with format 3.0. + - Use with autoreconf. + * debian/control: + - Add myself to Uploaders, and use ubuntu address for Maintainer. + - Build-depends on dh-autoreconf and gtk-doc-tools + - Improve the description. + - Add depends on libpam-runtime (>= 0.76-14) and libpam-modules for pam + support. + - Add depends on adduser. + - Provides x-display-manager. + - Add depends on libglib2.0-dev, libdbus-glib-1-dev and libxklavier-dev for + libldmgreeter-dev. + * debian/libldmgreeter-dev.install: + - Install .so + * debian/lightdm.install + - Install conf file for DBus. + * debian/lightdm.dirs + - Add /var directories for logs, and cache. + * debian/po & debian/lightdm.template: + - Add translations for display manager switch. + * debian/copyright: + - Update address for source code and copyright for debian/. + * debian/lightdm.conf: + - Sync with upstream modification. + * debian/lightdm.manpages + - Add the upstream manpage. + + [ Robert Ancell ] + * New upstream release + * Rename from libldmgreeter to liblightdm + * debian/control: + - Use ubuntu-desktop Bzr link + * debian/gir1.0-lightdm-0.install: + - Install typelib into correct package + * debian/lightdm.postinst: + * debian/lightdm.postrm: + - Create lightdm user + + -- Robert Ancell Wed, 01 Dec 2010 08:40:37 +1100 + +lightdm (0.2.0-0ubuntu1) maverick; urgency=low + + * New upstream release + * debian/control: + - Use standards version 3.9.1 + * debian/lightdm.conf: + * debian/rules: + - Make an Ubuntu specific default config file + + -- Robert Ancell Fri, 12 Nov 2010 13:58:43 +1100 + +lightdm (0.1.2-0ubuntu2) maverick; urgency=low + + * debian/lightdm-theme-gnome.install: + * debian/lightdm-theme-webkit.install: + - Fix install location of themes + + -- Robert Ancell Tue, 12 Oct 2010 15:52:24 +1100 + +lightdm (0.1.2-0ubuntu1) maverick; urgency=low + + * New upstream release + + -- Robert Ancell Fri, 10 Sep 2010 16:57:49 +1000 + +lightdm (0.1.1-0ubuntu1) maverick; urgency=low + + * New upstream release + + -- Robert Ancell Sat, 14 Aug 2010 22:06:43 +1000 + +lightdm (0.1.0-0ubuntu2) maverick; urgency=low + + * debian/lightdm-theme-gnome.install: + - Install gnome theme data + + -- Robert Ancell Thu, 22 Jul 2010 22:17:46 +0200 + +lightdm (0.1.0-0ubuntu1) maverick; urgency=low + + * New upstream release + + -- Robert Ancell Thu, 22 Jul 2010 21:57:35 +0200 + +lightdm (0.0.4-0ubuntu1) maverick; urgency=low + + * New upstream release + * debian/control: + - Build-depend on libxdmcp-dev, libxcb1-dev + - Use standards-version 3.9.0 + + -- Robert Ancell Fri, 16 Jul 2010 10:12:40 +1000 + +lightdm (0.0.3-0ubuntu2) maverick; urgency=low + + * debian/control: + - Build-depend on libxklavier-dev + + -- Robert Ancell Sat, 10 Jul 2010 15:33:57 +1000 + +lightdm (0.0.3-0ubuntu1) maverick; urgency=low + + * New upstream release + - Wait for signal from X server before starting session + - Add language API + - Add keyboard layout API + - Add gettext support to the WebKit greeter + + -- Robert Ancell Sat, 10 Jul 2010 14:07:26 +1000 + +lightdm (0.0.2-0ubuntu1maverick1) maverick; urgency=low + + * New upstream release: + - Fix installation of D-Bus service file + - Allow DISPLAY env variable to be passed to X server so can run Xephyr + - Handle no automatic login in webkit theme + * debian/control: + - Remove invalid ${shlibs:Depends} lines on binary free packages + * debian/watch: + - Update watch location + + -- Robert Ancell Thu, 01 Jul 2010 11:47:58 +1000 + +lightdm (0.0.1-0ubuntu1) maverick; urgency=low + + * Initial release + + -- Robert Ancell Sun, 27 Jun 2010 11:14:01 +1000 --- lightdm-1.0.1.orig/debian/rules +++ lightdm-1.0.1/debian/rules @@ -0,0 +1,32 @@ +#!/usr/bin/make -f + +LDFLAGS+=-Wl,--as-needed + +%: + dh $@ --with quilt,autoreconf,translations + +# NOTE: Using GNOME for now, but we still need a proper configuration system +# See https://launchpad.net/bugs/799754 +override_dh_auto_configure: + dh_auto_configure -- --with-greeter-user=lightdm --with-user-session=ubuntu + +override_dh_install: + #Remove .la and .a files. + find debian/tmp/usr/lib/ -name *.a |xargs rm + find debian/tmp/usr/lib -name *.la |xargs rm + #Remove conf files from upstream + #find debian/tmp/etc/ -name *.conf |xargs rm + #find debian/tmp/etc/init -name *.conf |xargs rm + dh_install --list-missing + chmod +x debian/lightdm/usr/lib/lightdm/lightdm-greeter-session + +override_dh_installinit: + dh_installinit --no-start + +override_dh_installpam: + dh_installpam + dh_installpam --name=lightdm-autologin + +override_dh_makeshlibs: + dh_makeshlibs -pliblightdm-gobject-1-0 -V'liblightdm-gobject-1-0 (>= 0.9.2)' -- -c4 + dh_makeshlibs -Nliblightdm-gobject-1-0 --- lightdm-1.0.1.orig/debian/liblightdm-gobject-1-dev.install +++ lightdm-1.0.1/debian/liblightdm-gobject-1-dev.install @@ -0,0 +1,5 @@ +usr/share/gir-1.0/LightDM-*.gir +usr/include/lightdm-gobject-* +usr/lib/pkgconfig/liblightdm-gobject-*.pc +usr/lib/liblightdm-gobject-*.so +usr/share/vala/vapi --- lightdm-1.0.1.orig/debian/liblightdm-gobject-1-0.symbols +++ lightdm-1.0.1/debian/liblightdm-gobject-1-0.symbols @@ -0,0 +1,66 @@ +liblightdm-gobject-1.so.0 liblightdm-gobject-1-0 #MINVER# + lightdm_get_can_hibernate@Base 0.9.2 + lightdm_get_can_restart@Base 0.9.2 + lightdm_get_can_shutdown@Base 0.9.2 + lightdm_get_can_suspend@Base 0.9.2 + lightdm_get_hostname@Base 0.9.2 + lightdm_get_language@Base 0.9.2 + lightdm_get_languages@Base 0.9.2 + lightdm_get_layout@Base 0.9.2 + lightdm_get_layouts@Base 0.9.2 + lightdm_get_sessions@Base 0.9.2 + lightdm_greeter_authenticate@Base 0.9.2 + lightdm_greeter_authenticate_as_guest@Base 0.9.2 + lightdm_greeter_cancel_authentication@Base 0.9.2 + lightdm_greeter_cancel_autologin@Base 0.9.2 + lightdm_greeter_connect_sync@Base 0.9.2 + lightdm_greeter_get_authentication_user@Base 0.9.2 + lightdm_greeter_get_autologin_guest_hint@Base 0.9.2 + lightdm_greeter_get_autologin_timeout_hint@Base 0.9.2 + lightdm_greeter_get_autologin_user_hint@Base 0.9.2 + lightdm_greeter_get_default_session_hint@Base 0.9.2 + lightdm_greeter_get_has_guest_account_hint@Base 0.9.2 + lightdm_greeter_get_hide_users_hint@Base 0.9.2 + lightdm_greeter_get_hint@Base 0.9.2 + lightdm_greeter_get_in_authentication@Base 0.9.2 + lightdm_greeter_get_is_authenticated@Base 0.9.2 + lightdm_greeter_get_select_guest_hint@Base 0.9.2 + lightdm_greeter_get_select_user_hint@Base 0.9.2 + lightdm_greeter_get_type@Base 0.9.2 + lightdm_greeter_new@Base 0.9.2 + lightdm_greeter_respond@Base 0.9.2 + lightdm_greeter_set_language@Base 0.9.8 + lightdm_greeter_start_session_sync@Base 0.9.2 + lightdm_hibernate@Base 0.9.2 + lightdm_language_get_code@Base 0.9.2 + lightdm_language_get_name@Base 0.9.2 + lightdm_language_get_territory@Base 0.9.2 + lightdm_language_get_type@Base 0.9.2 + lightdm_language_matches@Base 0.9.2 + lightdm_layout_get_description@Base 0.9.2 + lightdm_layout_get_name@Base 0.9.2 + lightdm_layout_get_short_description@Base 0.9.2 + lightdm_layout_get_type@Base 0.9.2 + lightdm_restart@Base 0.9.2 + lightdm_session_get_comment@Base 0.9.2 + lightdm_session_get_key@Base 0.9.2 + lightdm_session_get_name@Base 0.9.2 + lightdm_session_get_type@Base 0.9.2 + lightdm_set_layout@Base 0.9.2 + lightdm_shutdown@Base 0.9.2 + lightdm_suspend@Base 0.9.2 + lightdm_user_get_display_name@Base 0.9.2 + lightdm_user_get_home_directory@Base 0.9.2 + lightdm_user_get_image@Base 0.9.2 + lightdm_user_get_language@Base 0.9.2 + lightdm_user_get_layout@Base 0.9.2 + lightdm_user_get_logged_in@Base 0.9.2 + lightdm_user_get_name@Base 0.9.2 + lightdm_user_get_real_name@Base 0.9.2 + lightdm_user_get_session@Base 0.9.2 + lightdm_user_get_type@Base 0.9.2 + lightdm_user_list_get_instance@Base 0.9.2 + lightdm_user_list_get_length@Base 0.9.2 + lightdm_user_list_get_type@Base 0.9.2 + lightdm_user_list_get_user_by_name@Base 0.9.2 + lightdm_user_list_get_users@Base 0.9.2 --- lightdm-1.0.1.orig/debian/lightdm.preinst +++ lightdm-1.0.1/debian/lightdm.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +if dpkg-maintscript-helper supports mv_conffile; then + dpkg-maintscript-helper mv_conffile \ + /etc/lightdm.conf \ + /etc/lightdm/lightdm.conf \ + 0.3.7-0ubuntu2 -- "$@" +fi + +#DEBHELPER# + --- lightdm-1.0.1.orig/debian/lightdm-gtk-greeter.install +++ lightdm-1.0.1/debian/lightdm-gtk-greeter.install @@ -0,0 +1,4 @@ +usr/sbin/lightdm-gtk-greeter +usr/share/lightdm-gtk-greeter +usr/share/xgreeters/lightdm-gtk-greeter.desktop +debian/lightdm-gtk-greeter-ubuntu.conf etc/lightdm --- lightdm-1.0.1.orig/debian/lightdm.pam +++ lightdm-1.0.1/debian/lightdm.pam @@ -0,0 +1,14 @@ +#%PAM-1.0 +auth requisite pam_nologin.so +auth required pam_env.so readenv=1 +auth required pam_env.so readenv=1 envfile=/etc/default/locale +auth sufficient pam_succeed_if.so user ingroup nopasswdlogin +@include common-auth +auth optional pam_gnome_keyring.so +@include common-account +session [success=ok ignore=ignore module_unknown=ignore default=bad] pam_selinux.so close +session required pam_limits.so +@include common-session +session [success=ok ignore=ignore module_unknown=ignore default=bad] pam_selinux.so open +session optional pam_gnome_keyring.so auto_start +@include common-password --- lightdm-1.0.1.orig/debian/liblightdm-gobject-1-doc.install +++ lightdm-1.0.1/debian/liblightdm-gobject-1-doc.install @@ -0,0 +1 @@ +usr/share/gtk-doc/html/lightdm-gobject-* --- lightdm-1.0.1.orig/debian/lightdm-gtk-greeter-ubuntu.conf +++ lightdm-1.0.1/debian/lightdm-gtk-greeter-ubuntu.conf @@ -0,0 +1,17 @@ +# +# background = Background file to use, either an image path or a color (e.g. #772953) +# theme-name = GTK+ theme to use +# font-name = Font to use +# xft-antialias = Whether to antialias Xft fonts (true or false) +# xft-dpi = Resolution for Xft in dots per inch (e.g. 96) +# xft-hintstyle = What degree of hinting to use (hintnone, hintslight, hintmedium, or hintfull) +# xft-rgba = Type of subpixel antialiasing (none, rgb, bgr, vrgb or vbgr) +# +[greeter] +background=/usr/share/backgrounds/warty-final-ubuntu.png +theme-name=Ambiance +font-name=Ubuntu 11 +xft-antialias=true +xft-dpi=96 +xft-hintstyle=slight +xft-rgba=rgb --- lightdm-1.0.1.orig/debian/liblightdm-qt-1-dev.install +++ lightdm-1.0.1/debian/liblightdm-qt-1-dev.install @@ -0,0 +1,3 @@ +usr/include/lightdm-qt-* +usr/lib/pkgconfig/liblightdm-qt-*.pc +usr/lib/liblightdm-qt-*.so --- lightdm-1.0.1.orig/debian/lightdm.upstart +++ lightdm-1.0.1/debian/lightdm.upstart @@ -0,0 +1,44 @@ +# LightDM - light Display Manager +# +# The display manager service manages the X servers running on the +# system, providing login and auto-login services +# +# based on gdm upstart script + +description "LightDM Display Manager" +author "Robert Ancell " + +start on ((filesystem + and runlevel [!06] + and started dbus + and (drm-device-added card0 PRIMARY_DEVICE_FOR_DISPLAY=1 + or stopped udev-fallback-graphics)) + or runlevel PREVLEVEL=S) + +stop on runlevel [016] + +emits login-session-start +emits desktop-session-start +emits desktop-shutdown + +script + if [ -n "$UPSTART_EVENTS" ] + then + [ ! -f /etc/X11/default-display-manager -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/usr/bin/lightdm" -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/usr/sbin/lightdm" ] || { stop; exit 0; } + + if [ "$RUNLEVEL" = S -o "$RUNLEVEL" = 1 ] + then + # Single-user mode + plymouth quit || : + exit 0 + fi + fi + + exec lightdm +end script + +post-stop script + if [ "$UPSTART_STOP_EVENTS" = runlevel ]; then + initctl emit desktop-shutdown + fi +end script --- lightdm-1.0.1.orig/debian/control +++ lightdm-1.0.1/debian/control @@ -0,0 +1,123 @@ +Source: lightdm +Section: x11 +Priority: optional +Maintainer: Robert Ancell +Uploaders: Julien Lavergne +Standards-Version: 3.9.2 +Build-Depends: debhelper (>= 7.0.50~), + intltool (>= 0.35.0), + quilt, + libglib2.0-dev, + libpam0g-dev, + libxdmcp-dev, + libxcb1-dev, + libxklavier-dev, + libgtk-3-dev, + gobject-introspection, + libgirepository1.0-dev, + libqt4-dev, + dh-autoreconf, + dh-translations, + gtk-doc-tools, + dbus +Homepage: https://launchpad.net/lightdm +Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/lightdm/ubuntu + +Package: lightdm +Architecture: any +Pre-Depends: dpkg (>= 1.15.7.2) +Depends: ${misc:Depends}, + ${shlibs:Depends}, + libpam-runtime (>= 0.76-14), + libpam-modules, + adduser, + dbus +Recommends: xserver-xorg, + unity-greeter | lightdm-greeter +Conflicts: liblightdm-gobject-0-0, + liblightdm-qt-0-0 +Provides: x-display-manager +Description: Display Manager + LightDM is a X display manager that: + * Has a lightweight codebase + * Is standards compliant (PAM, ConsoleKit, etc) + * Has a well defined interface between the server and user interface + * Cross-desktop (greeters can be written in any toolkit) + +Package: lightdm-gtk-greeter +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends} +Recommends: lightdm +Provides: lightdm-greeter, lightdm-greeter-example-gtk, lightdm-gtk-greeter-config +Description: LightDM GTK+ Greeter + A LightDM greeter that uses the GTK+ toolkit. + +Package: lightdm-qt-greeter +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends} +Recommends: lightdm +Provides: lightdm-greeter +Description: LightDM Qt Greeter + A LightDM greeter that uses the Qt toolkit. + +Package: liblightdm-gobject-1-0 +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends} +Recommends: lightdm, + accountsservice +Description: LightDM GObject client library + A GObject based library for LightDM clients to use to interface with LightDM. + +Package: gir1.2-lightdm-1 +Section: libs +Architecture: any +Depends: ${misc:Depends}, + liblightdm-gobject-1-0 (= ${binary:Version}) +Description: Typelib file for liblightdm-1 + A GObject based library for LightDM clients to use to interface with LightDM. + +Package: liblightdm-qt-1-0 +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends} +Recommends: lightdm +Description: LightDM Qt client library + A Qt based library for LightDM clients to use to interface with LightDM. + +Package: liblightdm-gobject-1-dev +Section: libdevel +Architecture: any +Depends: ${misc:Depends}, + liblightdm-gobject-1-0 (= ${binary:Version}), + libglib2.0-dev, + libdbus-glib-1-dev, + libxklavier-dev +Description: LightDM client library (development files) + A GObject based library for LightDM clients to use to interface with LightDM. + . + This package contains header files and development information, which + is useful for building LightDM greeters and user switchers. + +Package: liblightdm-qt-1-dev +Section: libdevel +Architecture: any +Depends: ${misc:Depends}, + liblightdm-qt-1-0 (= ${binary:Version}), + libqt4-dev +Description: LightDM client library (development files) + A Qt based library for LightDM clients to use to interface with LightDM. + . + This package contains header files and development information, which + is useful for building LightDM greeters and user switchers. + +Package: liblightdm-gobject-1-doc +Section: doc +Architecture: any +Depends: ${misc:Depends} +Description: LightDM client library (documentation) + A GObject based library for LightDM clients to use to interface with LightDM. + . + This package contains HTML documentation. --- lightdm-1.0.1.orig/debian/gir1.2-lightdm-1.install +++ lightdm-1.0.1/debian/gir1.2-lightdm-1.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/girepository-1.0 --- lightdm-1.0.1.orig/debian/liblightdm-qt-1-0.install +++ lightdm-1.0.1/debian/liblightdm-qt-1-0.install @@ -0,0 +1 @@ +usr/lib/liblightdm-qt-*.so.* --- lightdm-1.0.1.orig/debian/compat +++ lightdm-1.0.1/debian/compat @@ -0,0 +1 @@ +7 --- lightdm-1.0.1.orig/debian/watch +++ lightdm-1.0.1/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://people.ubuntu.com/~robert-ancell/lightdm/releases/lightdm-([0-9.]+)\.tar\.gz --- lightdm-1.0.1.orig/debian/liblightdm-gobject-1-0.install +++ lightdm-1.0.1/debian/liblightdm-gobject-1-0.install @@ -0,0 +1 @@ +usr/lib/liblightdm-gobject-*.so.* --- lightdm-1.0.1.orig/debian/lightdm.config +++ lightdm-1.0.1/debian/lightdm.config @@ -0,0 +1,71 @@ +#!/bin/sh +# Debian lightdm package configuration script +# based on xdm script +# Copyright 2000-2001 Branden Robinson. +# Licensed under the GNU General Public License, version 2. See the file +# /usr/share/common-licenses/GPL or . + +set -e + +# source debconf library +. /usr/share/debconf/confmodule + +# set default display manager +DEFAULT_DISPLAY_MANAGER_FILE=/etc/X11/default-display-manager + +OWNERS= +if db_metaget shared/default-x-display-manager owners; then + OWNERS="$RET" +fi + +CHOICES= +if db_metaget shared/default-x-display-manager choices; then + CHOICES="$RET" +fi + +if [ "$OWNERS" != "$CHOICES" ]; then + db_subst shared/default-x-display-manager choices "$OWNERS" || : + db_fset shared/default-x-display-manager seen false || : +fi + +# debconf is not a registry; use the current contents of the default display +# manager file to pre-answer the question if possible +if [ -e "$DEFAULT_DISPLAY_MANAGER_FILE" ]; then + CURRENT_DEFAULT=$(basename "$(grep -v '^[[:space:]]*#' \ + "$DEFAULT_DISPLAY_MANAGER_FILE" | + head -n 1)") + if [ -n "$CURRENT_DEFAULT" ]; then + db_set shared/default-x-display-manager "$CURRENT_DEFAULT" + fi +else + CURRENT_DEFAULT= + if db_get shared/default-x-display-manager; then + CURRENT_DEFAULT="$RET" + fi +fi + +# when installing from scratch as part of a release upgrade, default to +# lightdm, otherwise ask +if [ -z "$2" -a -n "$RELEASE_UPGRADE_IN_PROGRESS" ]; then + db_set shared/default-x-display-manager lightdm + db_fset shared/default-x-display-manager seen true +else + db_input high shared/default-x-display-manager || : + db_go || : +fi + +# using this display manager? +NEW_DEFAULT= +if db_get shared/default-x-display-manager; then + NEW_DEFAULT="$RET" +fi + +# move the default display manager file if we are going to change it +if [ -n "$NEW_DEFAULT" ]; then + if [ "$NEW_DEFAULT" != "$CURRENT_DEFAULT" ]; then + if [ -e "$DEFAULT_DISPLAY_MANAGER_FILE" ]; then + mv "$DEFAULT_DISPLAY_MANAGER_FILE" \ + "${DEFAULT_DISPLAY_MANAGER_FILE}.dpkg-tmp" + fi + fi +fi --- lightdm-1.0.1.orig/debian/lightdm.templates +++ lightdm-1.0.1/debian/lightdm.templates @@ -0,0 +1,24 @@ +# These templates have been reviewed by the debian-l10n-english +# team +# +# If modifications/additions/rewording are needed, please ask +# for an advice to debian-l10n-english@lists.debian.org +# +# Even minor modifications require translation updates and such +# changes should be coordinated with translators and reviewers. + +Template: shared/default-x-display-manager +Type: select +Choices: ${choices} +_Description: Default display manager: + A display manager is a program that provides graphical login capabilities for + the X Window System. + . + Only one display manager can manage a given X server, but multiple display + manager packages are installed. Please select which display manager should + run by default. + . + Multiple display managers can run simultaneously if they are configured to + manage different servers; to achieve this, configure the display managers + accordingly, edit each of their init scripts in /etc/init.d, and disable the + check for a default display manager. --- lightdm-1.0.1.orig/debian/lightdm.postrm +++ lightdm-1.0.1/debian/lightdm.postrm @@ -0,0 +1,38 @@ +#!/bin/sh +set -e + +if dpkg-maintscript-helper supports mv_conffile; then + dpkg-maintscript-helper mv_conffile \ + /etc/lightdm.conf \ + /etc/lightdm/lightdm.conf \ + 0.3.7-0ubuntu2 -- "$@" +fi + +if [ "$1" = "purge" ] ; then + rm -f /etc/lightdm.conf + + if [ -d /var/log/lightdm ]; then + rm -r /var/log/lightdm + fi + + if [ -d /var/cache/lightdm ]; then + rm -r /var/cache/lightdm + fi + + if [ -d /var/run/lightdm/authority ]; then + rm -r /var/run/lightdm/authority + fi + + if getent passwd lightdm >/dev/null; then + if [ -x /usr/sbin/deluser ]; then + deluser --system lightdm + fi + fi + if getent group lightdm >/dev/null; then + if [ -x /usr/sbin/delgroup ]; then + delgroup --system lightdm + fi + fi +fi +#DEBHELPER# +exit 0 --- lightdm-1.0.1.orig/debian/lightdm.install +++ lightdm-1.0.1/debian/lightdm.install @@ -0,0 +1,14 @@ +usr/sbin/lightdm +usr/share/man +usr/share/locale +usr/share/man +usr/lib/lightdm +usr/bin +etc/dbus-1/ +etc/lightdm/users.conf +etc/lightdm/lightdm.conf usr/share/doc/lightdm/ +etc/lightdm/keys.conf usr/share/doc/lightdm/ +etc/apparmor.d +debian/lightdm-session usr/sbin +debian/guest-account usr/sbin +debian/lightdm-greeter-session usr/lib/lightdm --- lightdm-1.0.1.orig/debian/lightdm-qt-greeter.install +++ lightdm-1.0.1/debian/lightdm-qt-greeter.install @@ -0,0 +1,2 @@ +usr/sbin/lightdm-qt-greeter +usr/share/xgreeters/lightdm-qt-greeter.desktop \ No newline at end of file --- lightdm-1.0.1.orig/debian/lightdm-gtk-greeter.preinst +++ lightdm-1.0.1/debian/lightdm-gtk-greeter.preinst @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +if dpkg-maintscript-helper supports mv_conffile; then + dpkg-maintscript-helper mv_conffile \ + /etc/lightdm/lightdm-gtk-greeter.conf \ + /etc/lightdm/lightdm-gtk-greeter-ubuntu.conf \ + 1.0.0-0ubuntu1 -- "$@" +fi + +#DEBHELPER# + +exit 0 --- lightdm-1.0.1.orig/debian/lightdm-session +++ lightdm-1.0.1/debian/lightdm-session @@ -0,0 +1,81 @@ +#!/bin/sh +# +# LightDM wrapper to run around X sessions. + +echo "Running X session wrapper" + +# Load profile +for file in "/etc/profile" "$HOME/.profile" "/etc/xprofile" "$HOME/.xprofile"; do + if [ -f "$file" ]; then + echo "Loading profile from $file"; + . "$file" + fi +done + +# Load resources +xresourcedir="/etc/X11/Xresources" +if [ -d "$xresourcedir" ]; then + for file in $xresourcedir/*; do + echo "Loading resource: $file" + xrdb -nocpp -merge "$file" + done +fi +xresourcefile="$HOME/.Xresources" +if [ -f "$xresourcefile" ]; then + echo "Loading resource: $xresourcefile" + xrdb -nocpp -merge "$xresourcefile" +fi + +# Load keymaps +for file in "/etc/X11/Xkbmap" "$HOME/.Xkbmap"; do + if [ -f "$file" ]; then + echo "Loading keymap: $file" + setxkbmap `cat "$file"` + XKB_IN_USE=yes + fi +done + +# Load xmodmap if not using XKB +if [ -z "$XKB_IN_USE" ]; then + for file in "/etc/X11/Xmodmap" "$HOME/.Xmodmap"; do + if [ -f "$file" ]; then + echo "Loading modmap: $file" + xmodmap "$file" + fi + done +fi + +unset XKB_IN_USE + +# Run all system xinitrc shell scripts. +xinitdir="/etc/X11/xinit/xinitrc.d" +if [ -d "$xinitdir" ]; then + for script in $xinitdir/*; do + echo "Loading xinit script $script" + if [ -x "$script" -a ! -d "$script" ]; then + . "$script" + fi + done +fi + +# Load Xsession scripts +# OPTIONFILE, USERXSESSION, USERXSESSIONRC and ALTUSERXSESSION are required +# by the scripts to work +xsessionddir="/etc/X11/Xsession.d" +OPTIONFILE=/etc/X11/Xsession.options +USERXSESSION=$HOME/.xsession +USERXSESSIONRC=$HOME/.xsessionrc +ALTUSERXSESSION=$HOME/.Xsession +if [ -d "$xsessionddir" ]; then + for i in `ls $xsessionddir`; do + script="$xsessionddir/$i" + echo "Loading X session script $script" + if [ -r "$script" -a -f "$script" ] && expr "$i" : '^[[:alnum:]_-]\+$' > /dev/null; then + . "$script" + fi + done +fi + +echo "X session wrapper complete, running session $@" + +exec $@ --- lightdm-1.0.1.orig/debian/source/format +++ lightdm-1.0.1/debian/source/format @@ -0,0 +1 @@ +1.0 --- lightdm-1.0.1.orig/debian/po/pothead.in +++ lightdm-1.0.1/debian/po/pothead.in @@ -0,0 +1,30 @@ +# debconf templates for xorg-x11 package +# +# $Id: pothead.in 498 2005-08-05 01:55:05Z dnusinow $ +# +# Copyright: +# Branden Robinson, 2000-2004 +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf is available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: SOURCE_VERSION\n" +"Report-Msgid-Bugs-To: debian-x@lists.debian.org\n" +"POT-Creation-Date: DATE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" --- lightdm-1.0.1.orig/debian/po/gl.po +++ lightdm-1.0.1/debian/po/gl.po @@ -0,0 +1,85 @@ +# debconf templates for xorg-x11 package +# Galician translation +# +# $Id: gl.po 1080 2006-01-14 02:15:39Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# Jacobo Tarrio, 2001, 2006 +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +msgid "" +msgstr "" +"Project-Id-Version: xorg-x11\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-22 13:03+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Xestor de pantalla por defecto:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Un xestor de pantalla é un programa que fornece capacidades de inicio de " +"sesión gráfico para o sistema X Window." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Só un xestor de pantalla pode xestionar un servidor X determinado, pero hai " +"varios paquetes de xestores de pantalla instalados. Escolla o xestor de " +"pantalla que se debería executar por defecto." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Pódense executar varios xestores de pantalla ao mesmo tempo se se configuran " +"para xestionar servidores distintos; para facelo, configure os xestores de " +"pantalla, edite cada un dos scripts de inicio de /etc/init.d e desactive a " +"comprobación do xestor de pantalla por defecto." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "¿Deter o servizo de xdm?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "Adoita se deter o servizo do xestor de pantalla de X (xdm) ao actualizar " +#~ "ou eliminar o paquete, pero semella que está a xestionar alomenos unha " +#~ "sesión X en execución." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Se se detén xdm agora, hase cortar calquera sesión X que xestione. Se " +#~ "non, a nova versión ha tomar efecto a próxima vez que reinicie o servizo." --- lightdm-1.0.1.orig/debian/po/ml.po +++ lightdm-1.0.1/debian/po/ml.po @@ -0,0 +1,80 @@ +# Malayalam translation of xdm debconf template. +# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the xdm package. +# Praveen|പ്രവീണ്‍ A|എ , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: xdm 1.0\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-23 09:46+0530\n" +"Last-Translator: Praveen|പ്രവീണ്‍ A|എ \n" +"Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "ഡിഫാള്‍ട്ടായി വേണ്ട പ്രദര്‍ശന മാനേജര്‍:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"എക്സ് ജാലക സിസ്റ്റത്തിന് ഗ്രാഫിക്കലായി അകത്ത് കടക്കാനുള്ള കഴിവുകള്‍ നല്കുന്ന ഒരു പ്രോഗ്രാമാണ് ഒരു " +"പ്രദര്‍ശന മാനേജര്‍." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"ഏതെങ്കിലും ഒരു എക്സ് സേവകനെ ഒരേ ഒരു പ്രദര്‍ശന മാനേജര്‍‌ക്കേ മാനേജ് ചെയ്യാന്‍ പറ്റൂ, പക്ഷേ " +"ഒന്നിലധികം പ്രദര്‍ശന മാനേജര്‍ പാക്കേജുകള്‍ ഇന്‍സ്റ്റാള്‍ ചെയ്തിട്ടുണ്ട്. ദയവായി ഡിഫാള്‍ട്ടായി " +"പ്രവര്‍ത്തിപ്പിക്കേണ്ട പ്രദര്‍ശന മാനേജര്‍ ഏതാണെന്ന് തിരഞ്ഞെടുക്കുക." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"വ്യത്യസ്ത സേവകന്‍മാരെ മാനേജ് ചെയ്യാനായി ക്രമീകരിച്ചിട്ടുണ്ടെങ്കില്‍ ഒന്നിലധികം പ്രദര്‍ശന " +"മാനേജര്‍മാര്‍ക്ക് ഒരേ സമയം പ്രവര്‍ത്തിക്കാം; ഇത് കൈവരിക്കണമെങ്കില്‍, പ്രദര്‍ശന മാനേജര്‍മാരെ " +"അനുസൃതമായി ക്രമീകരിക്കുകയും, അവയോരോന്നിന്റേയും /etc/init.d യിലുള്ള ഇനിറ്റ് സ്ക്രിപ്റ്റുകളെ " +"മാറ്റുകയും, ഡിഫാള്‍ട്ട് പ്രദര്‍ശന മാനേജര്‍ക്കായുള്ള പരിശോദന ഡിസേബിള്‍ ചെയ്യുകയും ചെയ്യുക." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "xdm ഡീമണെ നിര്‍ത്തട്ടേ?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "എക്സ് പ്രദര്‍ശന മാനേജര്‍ (xdm) ഡീമണ്‍ സാധാരണയായി പാക്കേജ് അപ്​ഗ്രേഡിന്റേയും നീക്കം " +#~ "ചെയ്യലിന്റേയും സമയത്താണ് നിര്‍ത്താറുള്ളത്, പക്ഷേ പ്രവര്‍ത്തിച്ചുകൊണ്ടിരിക്കുന്ന ഒരു എക്സ് " +#~ "സെഷനെയെങ്കിലും ഇത് മാനേജ് ചെയ്തുകൊണ്ടിരിക്കുന്നത് പോലെ തോന്നുന്നു." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "xdm ഇപ്പോള്‍ നിര്‍ത്തുകയാണെങ്കില്‍, ഇത് മാനേജ് ചെയ്തുകൊണ്ടിരിക്കുന്ന ഏത് എക്സ് സെഷനുകളും " +#~ "അവസാനിപ്പിക്കുന്നതായിരിക്കും. അല്ലെങ്കില്‍, അടുത്ത തവണ ഡീമണ്‍ വീണ്ടും തുടങ്ങുമ്പോള്‍ പുതിയ ലക്കം " +#~ "നിലവില്‍ വരും." --- lightdm-1.0.1.orig/debian/po/ca.po +++ lightdm-1.0.1/debian/po/ca.po @@ -0,0 +1,99 @@ +# debconf templates for xorg-x11 package +# Catalan translation +# +# $Id: ca.po 1273 2006-02-21 10:58:12Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# Ivan Vilata i Balaguer , 2002-2007 +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: xdm 1:1.0.5-2\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-22 11:00+0100\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Escolliu el gestor de pantalla:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Un gestor de pantalla (display manager) és un programa que proporciona la " +"capacitat d’un quadre gràfic d’entrada (login) a l’X Window System." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Només un gestor de pantalla pot gestionar un servidor X determinat, però " +"teniu instaŀlats diversos paquets de gestor de pantalla. Per favor, " +"escolliu quin gestor de pantalla s'executarà per defecte." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Poden haver diversos gestors de pantalla corrent simultàniament si es " +"configuren per a gestionar diferents servidors; per a aconseguir açò, " +"configureu adequadament els gestors de pantalla, editeu cadascun dels seus " +"scripts d’inici en «/etc/init.d», i deshabiliteu la comprovació de gestor de " +"pantalla per defecte." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Voleu detenir el dimoni «xdm»?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "El dimoni gestor de pantalla d’X, «xdm», sol ser detingut en actualitzar‐" +#~ "ne i eliminar‐ne el paquet, però sembla que ara està gestionant almenys " +#~ "una sessió X activa." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Si es deté «xdm» ara, terminaran totes les sessions X que està " +#~ "gestionant. Altrament, podeu deixar corrent «xdm», i la nova versió " +#~ "surtirà efecte a la següent volta que el dimoni es reinicie." --- lightdm-1.0.1.orig/debian/po/el.po +++ lightdm-1.0.1/debian/po/el.po @@ -0,0 +1,113 @@ +# debconf templates for xorg-x11 package +# Greek translation +# +# $Id: el.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# Konstantinos Margaritis , 2004 +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: el\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2005-12-19 18:40+0200\n" +"Last-Translator: Konstantinos Margaritis \n" +"Language-Team: Greek \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +#, fuzzy +msgid "Default display manager:" +msgstr "Επιλέξτε τον επιθυμητό διαχειριστή οθόνης." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Ο διαχειριστής οθόνης είναι ένα πρόγραμμα που προσφέρει τη δυνατότητα " +"σύνδεσης στο σύστημα παραθύρων X μέσω γραφικού περιβάλλοντος." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +#, fuzzy +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Μόνο ένας διαχειριστής οθόνης μπορεί να χειρίζεται ένα συγκεκριμένο " +"εξυπηρετητή X, αλλά περισσότεροι από ένας είναι εγκατεστημένοι. Παρακαλώ " +"επιλέξτε τον διαχειριστή οθόνης που θα εκτελείται ως προκαθορισμένος." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +#, fuzzy +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Πολλαπλοί διαχειριστές οθόνης μπορούν να τρέχουν ταυτόχρονα, αν έχουν " +"ρυθμιστεί να χειρίζονται διαφορετικούς διακομιστές X. Για να επιτευχθεί " +"αυτό, ρυθμίστε τους διαχειριστές οθόνης κατάλληλα, επεξεργαστείτε τα αρχεία " +"εκκίνησής τους στον κατάλογο /etc/init.d, και απενεργοποιήστε τον έλεγχο για " +"προκαθορισμένο διαχειριστή οθόνης." + +#, fuzzy +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Θέλετε να σταματήσετε να χρησιμοποιείτε τον δαίμονα xdm;" + +#, fuzzy +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "Κανονικά, η λειτουργία του δαίμονα του διαχειριστή οθόνης των X (xdm) " +#~ "διακόπτεται με κάθε αναβάθμιση και διαγραφή του πακέτου, αλλά στη " +#~ "συγκεκριμένη περίπτωση φαίνεται ότι διαχειρίζεται ήδη τουλάχιστον μια " +#~ "συνεδρία των X (X session). Αν ο xdm τερματιστεί τώρα, οποιεσδήποτε " +#~ "συνεδρίες των X χειρίζεται θα τερματιστούν επίσης. Διαφορετικά, μπορείτε " +#~ "να αφήσετε τον xdm να συνεχίσει τη λειτουργία του και η νέα έκδοση να " +#~ "χρησιμοποιηθεί την επόμενη φορά που θα τρέξει ο δαίμονας." + +#, fuzzy +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Κανονικά, η λειτουργία του δαίμονα του διαχειριστή οθόνης των X (xdm) " +#~ "διακόπτεται με κάθε αναβάθμιση και διαγραφή του πακέτου, αλλά στη " +#~ "συγκεκριμένη περίπτωση φαίνεται ότι διαχειρίζεται ήδη τουλάχιστον μια " +#~ "συνεδρία των X (X session). Αν ο xdm τερματιστεί τώρα, οποιεσδήποτε " +#~ "συνεδρίες των X χειρίζεται θα τερματιστούν επίσης. Διαφορετικά, μπορείτε " +#~ "να αφήσετε τον xdm να συνεχίσει τη λειτουργία του και η νέα έκδοση να " +#~ "χρησιμοποιηθεί την επόμενη φορά που θα τρέξει ο δαίμονας." --- lightdm-1.0.1.orig/debian/po/zh_CN.po +++ lightdm-1.0.1/debian/po/zh_CN.po @@ -0,0 +1,92 @@ +# debconf templates for xdm package +# simplified Chinese translation +# +# Copyrights: +# Branden Robinson, 2000-2004 +# Carlos Z.F. Liu , 2005 +# Ming Hua , 2005,2007 +# +# This file is distributed under the same license as the xdm package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: 1:1.0.5-2\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-28 18:50-0500\n" +"Last-Translator: Ming Hua \n" +"Language-Team: Debian Chinese [GB] \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" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "默认显示管理器:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "显示管理器是为 X 窗口系统提供图形界面登录模式的程序。" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"一个给定的 X 服务器只能由一个显示管理器来管理,但是系统中已经安装了多个显示管" +"理器软件包。请选择一个作为默认的显示管理器。" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"如果多个显示管理器被配置为分别管理不同的 X 服务器,那么它们可以同时运行。要做" +"到这一点,您要按照需求分别对各显示管理器进行设置,编辑它们在 /etc/init.d 目录" +"下的 init 脚本,并且关闭对默认显示管理器的检查。" + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "停止 xdm 守护进程吗?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "X 显示管理器 (xdm) 守护进程通常会在软件包升级和卸载时被停止,但看起来它目" +#~ "前在管理一个或多个正在运行的 X 会话。" + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "如果 xdm 现在就被停止,它所管理的全部 X 会话都会被中止。如果不停止 xdm,新" +#~ "安装的版本将会在守护进程下次重新启动时生效。" --- lightdm-1.0.1.orig/debian/po/fi.po +++ lightdm-1.0.1/debian/po/fi.po @@ -0,0 +1,38 @@ +msgid "" +msgstr "" +"Project-Id-Version: slim\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-12-22 13:23+0200\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Finnish\n" +"X-Poedit-Country: Finland\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Oletusnäytönhallintaohjelma:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "A display manager is a program that provides graphical login capabilities for the X Window System." +msgstr "Näytönhallintaohjelma tarjoaa graafisen kirjautumisruudun X-ikkunointijärjestelmään." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Only one display manager can manage a given X server, but multiple display manager packages are installed. Please select which display manager should run by default." +msgstr "Vain yksi näytönhallintaohjelma voi hallinnoida kutakin X-palvelinta, mutta useampia näytönhallintaohjelmapaketteja on asennettuna. Valitse minkä näytönhallintaohjelman tulisi olla oletuksena käytössä." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Multiple display managers can run simultaneously if they are configured to manage different servers; to achieve this, configure the display managers accordingly, edit each of their init scripts in /etc/init.d, and disable the check for a default display manager." +msgstr "Useampia näytönhallintaohjelmia voidaan ajaa yhtäaikaisesti, jos ne on asetettu hallinnoimaan eri palvelimia. Saadaksesi tämän aikaan muokkaa näytönhallintaohjelmien asetuksia tarpeen mukaan, muokkaa kunkin käynnistyskomentosarjaa hakemistossa /etc/init.d ja passivoi oletusnäytönhallintaohjelman tarkistus." + --- lightdm-1.0.1.orig/debian/po/POTFILES.in +++ lightdm-1.0.1/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] lightdm.templates --- lightdm-1.0.1.orig/debian/po/nl.po +++ lightdm-1.0.1/debian/po/nl.po @@ -0,0 +1,102 @@ +# debconf templates for xorg-x11 package +# Dutch translation +# +# $Id: nl.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# Wouter Verhelst, 2002 +# Bart Cornelis, 2003 +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: xdm\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-22 20:24+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Standaard beeldschermbeheerder:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Een beeldschermbeheerder is een programma waarmee u zich grafisch op het " +"systeem kunt aanmelden, waarna u in de grafische omgeving (het X Window " +"System) terecht komt." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Elke X-server kan door slechts één beeldschermbeheerder beheerd worden, " +"hoewel er meerdere beeldschermbeheerders geïnstalleerd kunnen zijn. Welke " +"beeldschermbeheerder dient standaard gebruikt te worden?" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Het is mogelijk om meerdere beeldschermbeheerders tegelijk te draaien zolang " +"deze verschillende servers beheren. Om dat te bereiken dient u de " +"beeldschermbeheerders overeenkomstig in te stellen door in hun init-scripts " +"(in /etc/init.d) de controle of ze de standaard beeldschermbeheerder zijn " +"uit te schakelen." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Wilt u de xdm-achtergronddienst stoppen?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "Normaal wordt de beeldschermbeheerder (xdm) gestopt bij opwaardering en " +#~ "verwijdering van dit pakket; momenteel is er echter minstens één lopende " +#~ "X-sessie actief." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Als xdm nu gestopt word, worden alle door xdm beheerde X-sessies " +#~ "afgesloten. Als u xdm nu laat draaien wordt de nieuwe versie pas actief " +#~ "de eerstvolgende keer dat de achtergronddienst herstart wordt. " --- lightdm-1.0.1.orig/debian/po/ko.po +++ lightdm-1.0.1/debian/po/ko.po @@ -0,0 +1,77 @@ +# Korean translations for xdm package +# xdm 패키지에 대한 한국어 번역문. +# Copyright (C) 2007 THE xdm'S COPYRIGHT HOLDER +# This file is distributed under the same license as the xdm package. +# Sunjae Park , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: xdm\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-04-07 20:03-0400\n" +"Last-Translator: Sunjae Park \n" +"Language-Team: Korean \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" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "기본 화면관리자:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"화면 관리자는 그래픽 로그인 기능을 제공하는 X 윈도우 시스템을 위한 프로그램입" +"니다." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"한 화면관리자는 X 서버 하나만을 관리할 수 있는데도 설치된 화면 관리자가 여러 " +"개 있습니다. 기본으로 사용할 화면관리자를 선택해주십시오." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"서로 다른 서버를 관리하도록 설정할 경우 화면관리자를 동시에 여러 개 실행시킬 " +"수 있습니다. 이를 위해서는 각각의 화면관리자를 적절히 설정하고 /etc/init.d에 " +"에 있는 init 스크립트를 수정해서 기본 화면관리자 검사를 비활성하십시오." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "xdm 데몬을 중지시킬까요?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "X 화면관리자(xdm) 데몬은 일반적으로 꾸러미를 설치하고 업그레이드할 때 중지" +#~ "되지만 현재 하나 이상의 X 세션을 관리하는 중인 것 같습니다." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "xdm을 지금 중지시키면 xdm이 관리하고 있는 X 세션은 모두 중단됩니다. 지금 " +#~ "중지시키지 않으면 새로 설치한 버전은 데몬을 다시 시작할 때부터 사용됩니다." --- lightdm-1.0.1.orig/debian/po/de.po +++ lightdm-1.0.1/debian/po/de.po @@ -0,0 +1,111 @@ +# translation of xdm to german +# debconf templates for xorg-x11 package +# German translation +# +# $Id: de.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyrights: +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Branden Robinson, 2000-2004. +# Martin Schuster, 2001. +# Sebastian Rittau, 2001. +# Erich Schubert, 2001. +# Knut Suebert, 2001. +# Sebastian Feltel, 2001. +# Philipp Matthias Hahn, 2001. +# Veit Waltemath, 2002. +# Andreas Metzler, 2002. +# Alwin Meschede , 2004, 2005, 2007. +msgid "" +msgstr "" +"Project-Id-Version: de\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-24 12:33+0100\n" +"Last-Translator: Alwin Meschede \n" +"Language-Team: german \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" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Standardmäßiger Display-Manager:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Ein Display-Manager ist ein Programm, welches grafische Anmeldemöglichkeiten " +"für das X Window System zur Verfügung stellt." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Nur ein einziger Display-Manager kann einen gegebenen X-Server verwalten, es " +"sind allerdings mehrere Display-Manager installiert. Bitte wählen Sie den " +"Display-Manager aus, der standardmäßig ausgeführt werden soll." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Es können mehrere Display-Manager gleichzeitig laufen, wenn diese so " +"konfiguriert sind, dass sie verschiedene X-Server verwalten. Um dies zu " +"erreichen, konfigurieren Sie die Display-Manager entsprechend, editieren Sie " +"jedes ihrer Init-Skripte in /etc/init.d, und schalten Sie die Überprüfung " +"auf einen Standard-Display-Manager ab." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Soll der xdm-Dienst gestoppt werden?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "Der X Display Manager (xdm) Dienst wird meist beim Aktualisieren oder " +#~ "Entfernen eines Pakets gestoppt, aber er scheint mindestens eine laufende " +#~ "X-Sitzung zu verwalten." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Wenn xdm jetzt gestoppt wird, werden alle Sitzungen beendet, die er " +#~ "gerade verwaltet. Alternativ können Sie xdm weiter laufen lassen, die " +#~ "neue Version wird dann aktiv, sobald der Dienst das nächste Mal gestartet " +#~ "wird." --- lightdm-1.0.1.orig/debian/po/ta.po +++ lightdm-1.0.1/debian/po/ta.po @@ -0,0 +1,77 @@ +# translation of templates.po to TAMIL +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Dr.T.Vasudevan , 2007. +msgid "" +msgstr "" +"Project-Id-Version: templates\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-26 16:49+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" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "முன்னிருப்பு காட்சி மேலாளர்:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"காட்சி மேலாளர் என்பது வரைகலை உள்நுழைவு இயலுமையை எக்ஸ் விண்டோஸ் அமைப்புக்கு தரும் " +"நிரலாகும்." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"ஒரு கொடுக்கப் பட்ட X சேவையகத்தில் ஒரு காட்சி மேலாளர்தான் மேலாள இயலும். ஆனால் பல காட்சி " +"மேலாளர்கள் நிறுவப் பட்டுள்ளன. எது முன்னிருப்பாக இருக்க வேண்டும் என தேர்ந்தெடுங்கள்" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"வெவ்வேறு சேவையகங்களை மேலாள வடிவமைத்தால் பல காட்சி மேலாளர்கள் ஒரே நேரத்தில் இயங்கக் " +"கூடும். இதை செய்ய காட்சி மேலாளர்களை தகுந்தாற் போல வடிவமையுங்கள். அவற்றின் இனிட் சிறு " +"நிரல்களை /etc/init.d இல் திருத்துங்கள். முன்னிருப்பு காட்சி மேலாளர் தேர்வை செயலிழக்கச் " +"செய்யவும்." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "எக்ஸ்டிஎம் கிங்கரனை நிறுத்தவா?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "எக்ஸ்டிஎம் கிங்கரன் வழக்கமாக பொதி மேலாக்கம் அல்லது நீக்கம் நிகழும் போது நிறுத்தப் படும். " +#~ "ஆனால் அது ஒரு எக்ஸ் அமர்வையாவது இயக்குவது போல தெரிகிறது." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "இப்போது எக்ஸ்டிஎம் நிறுத்தப் பட்டால் அது மேலாளும் எக்ஸ் அமர்வுகள் நிறுத்தப் படும். அல்லது " +#~ "புதிய பதிப்பு கிங்கரன் அடுத்த முறை இயங்கும் போது செயல் ல் படும்." --- lightdm-1.0.1.orig/debian/po/cs.po +++ lightdm-1.0.1/debian/po/cs.po @@ -0,0 +1,96 @@ +# debconf templates for xdm package +# Czech translation +# +# $Id: cs.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# Miroslav Kure , 2004-2007 +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: xdm\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-24 10:42+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Výchozí správce obrazovky:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Správce obrazovky je program, který nabízí grafické přihlášení do systému X " +"Window." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Je nainstalováno několik správců obrazovky, ale jen jeden může obsluhovat " +"daný X server. Vyberte, který správce se má spouštět jako výchozí." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Více správců obrazovky může běžet zároveň pouze pokud spravují různé " +"servery. Pro dosažení takového nastavení je musíte správně nakonfigurovat, " +"upravit jejich spouštěcí skripty v /etc/init.d a zakázat kontrolu výchozího " +"správce obrazovky." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Zastavit démona xdm?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "Démon xdm (X display manager) je obvykle při aktualizaci nebo odstranění " +#~ "balíku zastaven, ale zdá se, že spravuje minimálně jedno X sezení." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Pokud by byl xdm zastaven nyní, všechna jím spravovaná X sezení by se " +#~ "ukončila. V opačném případě zůstane xdm běžet a nová verze se spustí s " +#~ "příštím restartem démona." --- lightdm-1.0.1.orig/debian/po/vi.po +++ lightdm-1.0.1/debian/po/vi.po @@ -0,0 +1,89 @@ +# debconf templates for xorg-x11 package +# Vietnamese translation +# slim 1.2.6-2 +# $Id: vi.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyright: +# Branden Robinson, 2000-2004 +# Clytie Siddall , 2005-2007. +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +msgid "" +msgstr "" +"Project-Id-Version: 4.3.0.dfsg.1-7+SVN\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-06-02 16:14+0930\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.6.3b1\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Bộ quản lý trình bày mặc định:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Bộ quản lý trình bày là chương trình cung cấp khả năng đăng nhập kiểu đồ họa " +"cho Hệ thống Cửa sổ X." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Chỉ một bộ quản lý trình bày có khả năng quản lý mỗi trình phục vụ X (X " +"server) đã cho, nhưng mà nhiều gói chương trình quản lý trình bày đã được " +"cài đặt. Hãy chọn bộ quản lý trình bày nào nà nên chạy theo mặc định." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Nhiều bộ quản lý trình bày có khả năng chạy đồng thời nếu mỗi điều được cấu " +"hình để quản lý trình phục vụ khác nhau. Để làm như thế, hãy cấu hình mọi bộ " +"quản lý trình bày một cách thích hợp, sửa đổi mỗi văn lệnh sơ khởi (init " +"script) trong , và tắt khả năng kiểm tra có bộ quản lý trình " +"bày mặc định." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Ngừng trình nền xdm không?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "Trình nền (dæmon) quản lý trình bày X thường được ngừng chạy khi cập nhật " +#~ "hay gỡ bỏ gói phần mềm, nhưng mà có vẻ là nó đang quản lý ít nhất một " +#~ "phiên chạy X còn hoạt động. " + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Ngừng chạy xdm ngay bây giờ thì phiên chạy X nào nó quản lý sẽ cũng bị " +#~ "kết thúc. Không thì phiên bản mới sẽ có tác động lần kế tiếp khởi chạy " +#~ "lại trình nền." --- lightdm-1.0.1.orig/debian/po/ru.po +++ lightdm-1.0.1/debian/po/ru.po @@ -0,0 +1,102 @@ +# translation of xserver-xorg_debian_po_ru.po to Russian +# debconf templates for xorg-x11 package +# Russian translation +# +# $Id: ru.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# Ilgiz Kalmetev, 2002, 2003 +# Serge Winitzki, 2003 +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# Yuri Kozlov , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: xserver-xorg_debian_po_ru\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-22 12:07+0300\n" +"Last-Translator: asv \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Менеджер дисплеев по умолчанию:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Менеджер дисплеев -- это программа, которая обеспечивает возможность " +"графического входа в систему для X Window System." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Данный X-сервер может обслуживать только один менеджер дисплеев, но " +"установлено несколько пакетов менеджеров дисплеев. Пожалуйста, выберите " +"менеджер дисплеев, который должен запускаться по умолчанию." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Несколько менеджеров дисплеев могут запускаться одновременно, если они " +"настроены на обслуживание разных серверов; чтобы добиться этого, настройте " +"менеджеры дисплеев соответственно, отредактируйте их сценарии инициализации " +"в /etc/init.d и отключите проверку менеджера дисплеев по умолчанию." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Остановить сервер-демон xdm?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "Сервер-демон менеджера X-дисплеев (xdm) обычно останавливают при " +#~ "обновлении или удалении пакета, но, кажется, что xdm сейчас управляет по " +#~ "крайней мере одним X-сеансом." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Если сейчас остановить xdm, то все управляемые им X-сеансы будут " +#~ "прерваны. Или вы можете не останавливать xdm, и тогда новая версия будет " +#~ "загружена тогда, когда xdm снова перезапустят." --- lightdm-1.0.1.orig/debian/po/sk.po +++ lightdm-1.0.1/debian/po/sk.po @@ -0,0 +1,82 @@ +# debconf templates for xorg-x11 package +# Slovak translation +# $Id: sk.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# Miroslav Kure , 2004 +# Peter Mann , 2005 +# +msgid "" +msgstr "" +"Project-Id-Version: xorg-x11\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-22 09:30+0100\n" +"Last-Translator: Peter Mann \n" +"Language-Team: Slovak \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Zvoľte predvoleného správcu obrazovky:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Správca obrazovky je program, ktorý ponúka grafické prihlásenie do systému X " +"Window." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Máte nainštalovaných viac správcov obrazovky, ale iba jeden môže obsluhovať " +"daný X server. Zvoľte si správcu, ktorý bude predvolený." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Súbežne môže byť spustených viac správcov obrazovky, ale iba v prípade " +"viacero rozdielnych serverov. Pre dosiahnutie takéhoto nastavenia ich musíte " +"správne nastaviť, upraviť ich spúšťacie skripty v /etc/init.d a zakázať " +"kontrolu predvoleného správcu obrazovky." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Zastaviť správcu obrazovky xdm?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "Správca obrazovky xdm (X display manager) sa zvykne zastaviť pri " +#~ "aktualizácii alebo odstraňovaní balíka, lenže teraz to vyzerá tak, že má " +#~ "na starosti aspoň jedno ďalšie spustené X sedenie." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Ak by sa teraz xdm zastavil, všetky ním ovládané X sedenia by sa " +#~ "ukončili. V opačnom prípade môžete nechať xdm spustený, pričom nová " +#~ "verzia sa spustí pri ďalšom reštarte xdm." --- lightdm-1.0.1.orig/debian/po/es.po +++ lightdm-1.0.1/debian/po/es.po @@ -0,0 +1,97 @@ +# slim po-debconf translation to Spanish +# Copyright (C) 2001, 2002, 2003, 2005, 2008 Software in the Public Interest +# This file is distributed under the same license as the slim package. +# +# Changes: +# - Initial translation +# Carlos Valdivia Yagüe, 2001 +# +# - Updates +# Javier Fernandez-Sanguino Peña, 2003 +# David Martínez Moreno , 2001, 2002, 2005 +# Francisco Javier Cuadrado , 2008 +# +# Traductores, si no conoce el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor, lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +msgid "" +msgstr "" +"Project-Id-Version: slim 1.3.0-2\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2008-12-24 13:47+0100\n" +"Last-Translator: Francisco Javier Cuadrado \n" +"Language-Team: ES \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Gestor de sesiones predeterminado:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "A display manager is a program that provides graphical login capabilities for the X Window System." +msgstr "Un gestor de sesiones es un programa que le ofrece la posibilidad de entrar gráficamente a su sistema mediante el sistema X Window." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Only one display manager can manage a given X server, but multiple display manager packages are installed. Please select which display manager should run by default." +msgstr "Sólo puede utilizarse un gestor de sesiones para gestionar un servidor de X concreto, pero existen varios paquetes de gestores de sesiones instalados. Por favor, seleccione que gestor de sesiones debería ejecutarse de manera predeterminada." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Multiple display managers can run simultaneously if they are configured to manage different servers; to achieve this, configure the display managers accordingly, edit each of their init scripts in /etc/init.d, and disable the check for a default display manager." +msgstr "Varios gestores de sesiones se pueden ejecutar simultáneamente si están configurados para manejar diferentes servidores. Para conseguir esto, configure los gestores de sesiones apropiadamente, edite cada script de init en «/etc/init.d» relacionado con ellos y desactive la comprobación en busca del gestor de sesiones predeterminado." + +#, fuzzy +#~ msgid "Stop the xdm daemon?" +#~ msgstr "¿Desea parar el demonio de xdm?" + +#, fuzzy +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "El demonio del gestor de sesiones (xdm) generalmente se para al " +#~ "actualizar los paquetes y al eliminarlos, pero parece que gestiona por lo " +#~ "menos una sesión X en estos momentos. Si detiene xdm ahora, cualquier " +#~ "sesión X que gestione será destruida. Puede dejar que xdm siga " +#~ "ejecutándose, y la siguiente versión tendrá efecto cuando el demonio se " +#~ "rearranque." + +#, fuzzy +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "El demonio del gestor de sesiones (xdm) generalmente se para al " +#~ "actualizar los paquetes y al eliminarlos, pero parece que gestiona por lo " +#~ "menos una sesión X en estos momentos. Si detiene xdm ahora, cualquier " +#~ "sesión X que gestione será destruida. Puede dejar que xdm siga " +#~ "ejecutándose, y la siguiente versión tendrá efecto cuando el demonio se " +#~ "rearranque." + --- lightdm-1.0.1.orig/debian/po/eu.po +++ lightdm-1.0.1/debian/po/eu.po @@ -0,0 +1,101 @@ +# translation of xdm-eu.po to librezale +# debconf templates for xorg-x11 package +# Euskara translation +# +# $Id: eu.po 490 2005-08-03 09:59:07Z ender $ +# +# Copyright: +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf is available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Branden Robinson, 2000-2004. +# Piarres Beobide , 2005, 2007. +msgid "" +msgstr "" +"Project-Id-Version: xdm-eu\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-22 16:06+0100\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: librezale \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" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Lehenetsiriko pantaila kudeatzailea:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Pantaila kudeatzailea X Leiho Sistemarako saio hasiera grafiko aukera ematen " +"duen programa bat da." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Jakindako X zerbitzari bat pantaila kudeatzaile batek bakarrik kudea dezake, " +"baina pantaila kudeatzaile anitz daude instalaturik. Hautatu zein pantaila " +"kudeatzaile erabili nahi duzun lehenetsi bezala." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Pantaila kudeatzaile anitz batera martxan egon daitezke, zerbitzari " +"ezberdinak kudeatzeko konfiguraturik badaude; hau lortzeko, pantaila " +"kudeatzaileak behar bezala konfiguratu eta /etc/init.d-eko init script-ean " +"lehenetsiriko pantaila kudeatzailea arakatzeko aukera ezgaitu." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Xdm deabrua gelditu?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "X Pantaila Kudeatzaile (xdm) deabrua arruntean gelditu egiten da pakete " +#~ "eguneraketa edo ezabaketa egiterakoan, baina dirudienez martxan dagoen X " +#~ "saio bat beintzat kudeatzen ari da." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "xdm orain gelditu ezkero, kudeatzen ari den edozein X saio itxi egingo " +#~ "da. Bestela xdm martxan utz dezakezu eta bersio berria deabrua abiarazten " +#~ "den hurrengo aldian erabiliko da." --- lightdm-1.0.1.orig/debian/po/sv.po +++ lightdm-1.0.1/debian/po/sv.po @@ -0,0 +1,103 @@ +# debconf templates for xorg-x11 package +# Swedish translation +# +# $Id: sv.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# Andr Dahlqvist, 2001 +# Peter Toneby, 2002 +# Mikael Hedin, 2002 +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: xserver-xorg\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-22 10:43+0100\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Swedish\n" +"X-Poedit-Country: SWEDEN\n" +"X-Poedit-SourceCharset: iso-8859-1\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Standarddisplayhanterare:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"En displayhanterare r det program som tillhandahller grafiska " +"inloggningsmjligheter i X Window System." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Endast en displayhanterare kan hantera en angiven X-server, men flera " +"displayhanterarpaket kan vara installerade. Vlj vilken displayhanterare som " +"skall kras som standard." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Flera displayhanterare kan kras samtidigt om de r konfigurerade att " +"hantera olika servrar. Fr att uppn detta ska du konfigurera " +"displayhanterarnas init-skript under /etc/init.d, och inaktivera kontrollen " +"efter en standarddisplayhanterare." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Stoppa xdm-demonen?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "X-displayhanterardemonen (xdm) stoppas vanligtvis vid paketuppgradering " +#~ "och borttagning men det verkar som om den hanterar tminstone en krande " +#~ "X-session." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Om xdm stoppas nu kommer de X-sessioner som den hanterar att avslutas. Om " +#~ "inte kommer den nya versionen att bli aktiv nsta gng som demonen " +#~ "startas om." --- lightdm-1.0.1.orig/debian/po/da.po +++ lightdm-1.0.1/debian/po/da.po @@ -0,0 +1,112 @@ +# debconf templates for xorg-x11 package +# Danish translation +# +# $Id: da.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# Dennis Haney, 2002 +# Morten Brix Pedersen , 2003. +# Claus Hindsgaul , 2004, 2005. +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: xorg-x11 6.8.2.dfsg.1-5+SVN\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2005-08-29 17:06+0200\n" +"Last-Translator: Claus Hindsgaul \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +#, fuzzy +msgid "Default display manager:" +msgstr "Vlg den nskede logindhndtering." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"En logindhndtering er et program der giver et grafisk logind til X Window-" +"systemet." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +#, fuzzy +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Der kan kun kre n logindhndtering for hver X-server, men der er " +"installeret flere logindhndteringer Vlg hvilken logindhndtering der skal " +"benyttes som standard." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +#, fuzzy +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"(Flere logindhndteringer kan kre samtidig. hvis de er sat op til at " +"hndtere forskellige servere. For at f dette til at fungere, skal " +"logindhndteringenerne sttes op til det. Det gr du ved at fjerne tjekket " +"for standard logindhndtering i deres initialiseringsskripter i /etc/init.d.)" + +#, fuzzy +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Vil du stoppe xdm-dmonen?" + +#, fuzzy +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "X-logindhndteringsdmonen (xdm) stoppes typisk under opgradering eller " +#~ "afinstallation af pakken, men det ser ud til at der allerede krer mindst " +#~ "n X-session. Hvis xdm bliver stoppet nu, vil alle de X-sessioner, den " +#~ "hndterer, blive afbrudt. Ellers kan du lade xdm kre, s den nye version " +#~ "frst bliver taget i brug nste gang dmonen bliver genstartet." + +#, fuzzy +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "X-logindhndteringsdmonen (xdm) stoppes typisk under opgradering eller " +#~ "afinstallation af pakken, men det ser ud til at der allerede krer mindst " +#~ "n X-session. Hvis xdm bliver stoppet nu, vil alle de X-sessioner, den " +#~ "hndterer, blive afbrudt. Ellers kan du lade xdm kre, s den nye version " +#~ "frst bliver taget i brug nste gang dmonen bliver genstartet." --- lightdm-1.0.1.orig/debian/po/fr.po +++ lightdm-1.0.1/debian/po/fr.po @@ -0,0 +1,106 @@ +# translation of fr.po to French +# debconf templates for xorg-x11 package +# French translation +# +# $Id: fr.po 1053 2006-01-10 19:20:06Z ender $ +# +# Copyrights: +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Branden Robinson, 2000-2004. +# Thomas Morin, 2001. +# Patrice Karatchentzeff, 2001. +# Jérôme Schell, 2001. +# Jean-Christophe Dubacq, 2002. +# Christian Perrier , 2003, 2004, 2006, 2007. +msgid "" +msgstr "" +"Project-Id-Version: fr\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-22 20:06+0100\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \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=2; plural=n>1;\n" +"\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Gestionnaire graphique de session par défaut :" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Un gestionnaire graphique de session est un programme qui permet de se " +"connecter depuis le système X Window." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Un seul gestionnaire graphique de session peut s'occuper d'un serveur X " +"donné, bien que plusieurs gestionnaires puissent être installés " +"simultanément. Veuillez choisir celui qui sera utilisé par défaut." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Plusieurs gestionnaires graphiques peuvent être lancés en même temps, s'ils " +"gèrent des serveurs X différents ; pour cela, configurez correctement chacun " +"des gestionnaires graphiques, modifiez leurs scripts de lancement dans /etc/" +"init.d, et désactivez le test de gestionnaire graphique par défaut." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Faut-il arrêter le démon xdm ?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "Le gestionnaire de sessions X (xdm) est généralement arrêté lors de la " +#~ "mise à jour ou de la suppression du paquet. Cependant, il semble qu'il " +#~ "gère actuellement encore au moins une session X." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Si xdm est arrêté maintenant, toutes les sessions X qu'il gère seront " +#~ "terminées. L'autre possibilité est de laisser fonctionner xdm, la " +#~ "nouvelle version ne devenant active qu'au prochain redémarrage du démon." --- lightdm-1.0.1.orig/debian/po/templates.pot +++ lightdm-1.0.1/debian/po/templates.pot @@ -0,0 +1,50 @@ +# 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: lightdm@packages.debian.org\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../lightdm.templates:2001 +msgid "Default display manager:" +msgstr "" + +#. Type: select +#. Description +#: ../lightdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" + +#. Type: select +#. Description +#: ../lightdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" + +#. Type: select +#. Description +#: ../lightdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" --- lightdm-1.0.1.orig/debian/po/tr.po +++ lightdm-1.0.1/debian/po/tr.po @@ -0,0 +1,93 @@ +# translation of tr.po to Turkish +# debconf templates for xorg-x11 package +# Turkish translation +# +# $Id: tr.po 1061 2006-01-11 10:19:43Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# Osman Yüksel , 2004, 2006. +# Recai Oktaş , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: xorg-x11\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2008-09-19 12:58+0200\n" +"Last-Translator: Mert Dirik \n" +"Language-Team: Debian L10n Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.10.2\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Öntanımlı ekran yöneticisi:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "A display manager is a program that provides graphical login capabilities for the X Window System." +msgstr "Ekran yöneticisi, X Pencere Sistemi'ne görsel arayüz ile giriş yapmayı sağlayan bir programdır." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Only one display manager can manage a given X server, but multiple display manager packages are installed. Please select which display manager should run by default." +msgstr "Sadece bir ekran yöneticisi verilen X sunucusunu yönetebilir; ancak sisteminizde birden fazla ekran yöneticisi kurulu durumda. Lütfen öntanımlı olarak çalıştırmak istediğiniz ekran yöneticisini seçin." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Multiple display managers can run simultaneously if they are configured to manage different servers; to achieve this, configure the display managers accordingly, edit each of their init scripts in /etc/init.d, and disable the check for a default display manager." +msgstr "Eğer farklı sunucuları çalıştırmak için ayarlanırsa birden fazla ekran yöneticisi kullanılabilir. Bunun için, her bir ekran yöneticisini uygun bir şekilde yapılandırın, /etc/init.d içindeki ilgili betikleri değiştirin ve öntanımlı ekran yöneticisini denetleyen işlevleri devre dışı bırakın." + +#, fuzzy +#~ msgid "Stop the xdm daemon?" +#~ msgstr "xdm servisini durdurmak istiyor musunuz?" + +#, fuzzy +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "X ekran yöneticisi (xdm) servisi, paket güncelleme ve kaldırma sırasında " +#~ "genellikle durdurulur. Fakat öyle görünüyor ki xdm, çalışan (en az) bir " +#~ "X oturumunu yönetiyor. Eğer xdm şimdi durdurulursa yönetilen X " +#~ "oturumları da sonlandırılacaktır. Böyle yapmak yerine xdm'i çalışır " +#~ "vaziyette bırakabilirsiniz. Yeni sürüm, xdm servisinin bir sonraki " +#~ "çalıştırılışında etkin olacaktır." + +#, fuzzy +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "X ekran yöneticisi (xdm) servisi, paket güncelleme ve kaldırma sırasında " +#~ "genellikle durdurulur. Fakat öyle görünüyor ki xdm, çalışan (en az) bir " +#~ "X oturumunu yönetiyor. Eğer xdm şimdi durdurulursa yönetilen X " +#~ "oturumları da sonlandırılacaktır. Böyle yapmak yerine xdm'i çalışır " +#~ "vaziyette bırakabilirsiniz. Yeni sürüm, xdm servisinin bir sonraki " +#~ "çalıştırılışında etkin olacaktır." + --- lightdm-1.0.1.orig/debian/po/ro.po +++ lightdm-1.0.1/debian/po/ro.po @@ -0,0 +1,112 @@ +# translation of ro.po to Romanian +# debconf templates for xorg-x11 package +# +# $Id: pothead.in 189 2005-06-11 00:04:27Z branden $ +# +# Copyright: +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf is available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Branden Robinson, 2000--2004. +# Eddy Petrişor , 2005. +# Ruşeţ Zeno , 2005. +# Eddy Petrisor , 2005. +# Eddy Petrișor , 2007. +msgid "" +msgstr "" +"Project-Id-Version: ro\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-05-31 11:00+0300\n" +"Last-Translator: Eddy Petrișor \n" +"Language-Team: Romanian \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==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Managerul de ecran implicit:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Un manager de ecran este un program care oferă facilitatea de autentificare " +"grafică sistemului de ferestre X." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Doar un singur manager de ecran poate guverna un anumit server X, dar mai " +"mulţi manageri de ecran sunt instalaţi. Selectaţi managerul care ar trebui " +"să pornească în mod implicit." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Mai mulţi manageri de ecran pot rula simultan dacă sunt configuraţi să " +"guverneze servere diferite; pentru a obţine acest lucru, configuraţi " +"corespunzător managerii de ecran, editaţi fiecare dintre script-urile lor de " +"iniţializare din /etc/init.d şi dezactivaţi testul de manager de ecran " +"implicit." + +#, fuzzy +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Doriţi să opriţi demonul xdm?" + +#, fuzzy +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "Demonul X de management al ecranului (xdm) este, în mod obişnuit oprit la " +#~ "înnoirea sau ştergerea pachetului, dar se pare că acesta guvernează cel " +#~ "puţin o sesiune X care rulează acum. Dacă xdm este oprit acum, orice " +#~ "sesiune guvernată de el va fi terminată. Altfel, îl puteţi lăsa pe xdm să " +#~ "ruleze şi noua versiune va avea efect la următoarea repornire a demonului." + +#, fuzzy +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Demonul X de management al ecranului (xdm) este, în mod obişnuit oprit la " +#~ "înnoirea sau ştergerea pachetului, dar se pare că acesta guvernează cel " +#~ "puţin o sesiune X care rulează acum. Dacă xdm este oprit acum, orice " +#~ "sesiune guvernată de el va fi terminată. Altfel, îl puteţi lăsa pe xdm să " +#~ "ruleze şi noua versiune va avea efect la următoarea repornire a demonului." --- lightdm-1.0.1.orig/debian/po/it.po +++ lightdm-1.0.1/debian/po/it.po @@ -0,0 +1,102 @@ +# debconf templates for xorg-x11 package +# Italian translation +# +# $Id: it.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# Matteo Dell'Amico, 2002 +# Emanuele Aina, 2002 +# Luca Monducci, 2004 +# Danilo Piazzalunga, 2004-2007 +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: xorg-x11 6.8.2.dfsg.1-10\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-25 14:40+0200\n" +"Last-Translator: Danilo Piazzalunga \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Display manager predefinito." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Un display manager è un programma che fornisce capacità di login grafico per " +"il sistema X Window." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Solo un display manager può gestire un dato server X, ma sono installati più " +"pacchetti di display manager. Scegliere il display manager da usare come " +"predefinito." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Possono essere eseguiti più display manager contemporaneamente, a patto che " +"siano impostati per gestire server diversi; per fare questo, configurare i " +"display manager in maniera appropriata, modificare ciascuno dei loro script " +"di avvio in /etc/init.d e disabilitare il controllo per un display manager " +"predefinito." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Arrestare il demone xdm?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "Il demone del display manager X (xdm) viene tipicamente fermato in fase " +#~ "di aggiornamento o rimozione del pacchetto, ma pare che al momento stia " +#~ "gestendo almeno una sessione attiva di X." + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Se xdm viene arrestato ora, anche tutte le sessioni di X che gestisce " +#~ "verranno terminate. In alternativa, la nuova versione sarà usata a " +#~ "partire dal prossimo avvio del demone." --- lightdm-1.0.1.orig/debian/po/pt_BR.po +++ lightdm-1.0.1/debian/po/pt_BR.po @@ -0,0 +1,103 @@ +# Brazilian Portuguese translation (xdm) +# debconf templates for xdm package +# +# $Id: pt_BR.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyrights: +# +# This file is distributed under the same license as the xdm package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Branden Robinson, 2000-2004. +# Gustavo Noronha Silva, 2001. +# Henrique de Moraes Holschuh, 2001. +# André Luís Lopes , 2001-2005. +# Eder L. Marques , 2007. +msgid "" +msgstr "" +"Project-Id-Version: xdm 1:1.0.5-2\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-27 01:16-0300\n" +"Last-Translator: Eder L. Marques \n" +"Language-Team: l10n portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"pt_BR utf-8\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Gerenciador de sessão padrão:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Um gerenciador de sessão é um programa que provê capacidades de login " +"gráfico para o 'X Window System'." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Somente um gerenciador de sessão pode gerenciar um dado servidor X, mas " +"diversos pacotes de gerenciadores de sessão estão instalados. Por favor " +"selecione qual gerenciador de sessão deverá ser executado por padrão." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Múltiplos gerenciadores de sessão podem ser executados simultaneamente se " +"eles estão configurados para gerenciar servidores diferentes; para conseguir " +"isso, configure os gerenciadores de sessão apropriadamente, edite cada um " +"dos seus scripts de inicialização em /etc/init.d, e desabilite a checagem " +"por um gerenciador de sessão padrão." + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "Deseja parar o daemon xdm?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "O daemon do gerenciador de sessão do X (xdm) tipicamente é parado em " +#~ "atualizações e remoções de pacotes, mas ele parece estar gerenciando pelo " +#~ "menos uma sessão X em execução. " + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "Caso o xdm seja parado agora, quaisquer sessões X que ele esteja " +#~ "gerenciando serão encerradas. Caso contrário a nova versão terá efeito na " +#~ "próxima vez que o daemon for reiniciado." --- lightdm-1.0.1.orig/debian/po/pl.po +++ lightdm-1.0.1/debian/po/pl.po @@ -0,0 +1,80 @@ +# debconf templates for xorg-x11 package +# Polish translation +# +# $Id: pl.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# Marcin Owsiany, 2001, 2002 +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: slim\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: i2007-05-23 22:20+02:00\n" +"Last-Translator: Unknown\n" +"Language-Team: Polish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +#, fuzzy +msgid "Default display manager:" +msgstr "Wybierz domylny display manager." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Display manager to program, ktry umoliwia logowanie si bezporednio do " +"systemu X Window." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +#, fuzzy +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Tylko jeden display manager moe kontrolowa dany X serwer, ale " +"zainstalowanych jest obecnie kilka takich programw. Wybierz, ktry z nich " +"ma by uruchamiany domylnie." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +#, fuzzy +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"(Mona uruchomi kilka programw \"display manager\", ale musz one " +"kontrolowa rne serwery; mona to osign konfigurujc odpowiednio kady " +"z nich i wyczajc w ich skryptach startowych fragment sprawdzajcy " +"domylny display manager.)" --- lightdm-1.0.1.orig/debian/po/ja.po +++ lightdm-1.0.1/debian/po/ja.po @@ -0,0 +1,102 @@ +# debconf templates for xorg-x11 package +# Japanese translation +# +# $Id: ja.po 1063 2006-01-11 10:46:20Z ender $ +# +# Copyrights: +# Branden Robinson, 2000-2004 +# ISHIKAWA Mutsumi, 2001 +# Tomohiro KUBOTA, 2001, 2002 +# Kenshi Muto, 2001, 2003, 2004 +# Takeo Nakano, 2001, 2003 +# +# This file is distributed under the same license as the xorg-x11 package. +# Please see debian/copyright. +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: xorg-x11 6.9.dfsg.1-3+SVN\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2007-03-22 19:09+0900\n" +"Last-Translator: Kenshi Muto and ISHIKAWA Mutsumi " +"\n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "デフォルトのディスプレイマネージャ:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"ディスプレイマネージャとは、X Window System 上でのグラフィカルなログイン機能" +"を提供するものです。" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"ひとつの X サーバを管理できるのはひとつのディスプレイマネージャだけですが、" +"ディスプレイマネージャパッケージが複数インストールされています。どのディスプ" +"レイマネージャをデフォルトで起動させるか選択して下さい。" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"異なるサーバを担当するように設定すれば、複数のディスプレイサーバは同時に動作" +"できます。そのようにするには、/etc/init.d にある各ディスプレイマネージャの初" +"期化スクリプトを編集し、デフォルトディスプレイマネージャのチェックを無効にし" +"て下さい。" + +#~ msgid "Stop the xdm daemon?" +#~ msgstr "xdm デーモンを停止しますか?" + +#~ msgid "" +#~ "The X display manager (xdm) daemon is typically stopped on package " +#~ "upgrade and removal, but it appears to be managing at least one running X " +#~ "session." +#~ msgstr "" +#~ "X ディスプレイマネージャ (xdm) デーモンは、普通、パッケージの更新や削除の" +#~ "際に停止させられます。しかし xdm は現在動作中の X セッションを最低ひとつは" +#~ "管理しているようです。" + +#~ msgid "" +#~ "If xdm is stopped now, any X sessions it manages will be terminated. " +#~ "Otherwise, the new version will take effect the next time the daemon is " +#~ "restarted." +#~ msgstr "" +#~ "いま xdm を停止すると、この xdm が管理している X セッションは停止します。" +#~ "あるいは次にデーモンをリスタートしたときに新しいバージョンの xdm を有効に" +#~ "することもできます。" --- lightdm-1.0.1.orig/debian/po/pt.po +++ lightdm-1.0.1/debian/po/pt.po @@ -0,0 +1,64 @@ +# debconf templates for xorg-x11 package +# Portuguese translation +# +# $Id: pt.po 1042 2006-01-09 07:55:08Z ender $ +# +# Copyright: +# Branden Robinson, 2000-2004 +# Eduardo Silva , 2005 +# Miguel Figueiredo , 2007-2008 +# +msgid "" +msgstr "" +"Project-Id-Version: xserver-xorg_debian_po\n" +"Report-Msgid-Bugs-To: mmassonnet@gmail.com\n" +"POT-Creation-Date: 2007-05-31 08:04+0200\n" +"PO-Revision-Date: 2008-09-02 21:27+0100\n" +"Last-Translator: Miguel Figueiredo \n" +"Language-Team: 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" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "Default display manager:" +msgstr "Gestor de ecrã pré-definido:" + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"A display manager is a program that provides graphical login capabilities " +"for the X Window System." +msgstr "" +"Um gestor de ecrã é um programa que fornece capacidades de autenticação " +"gráfica ao X Window System." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Only one display manager can manage a given X server, but multiple display " +"manager packages are installed. Please select which display manager should " +"run by default." +msgstr "" +"Apenas um único gestor de ecrã pode gerir um dado servidor X, mas estão " +"instalados vários pacotes de gestores de ecrã. Por favor escolha qual o " +"gestor de ecrã que deve ser executado por omissão." + +#. Type: select +#. Description +#: ../lxdm.templates:2001 +msgid "" +"Multiple display managers can run simultaneously if they are configured to " +"manage different servers; to achieve this, configure the display managers " +"accordingly, edit each of their init scripts in /etc/init.d, and disable the " +"check for a default display manager." +msgstr "" +"Podem correr simultaneamente vários gestores de ecrã se estes estiverem " +"configurados para gerir diferentes servidores; para alcançar isto, configure " +"os gestores de ecrã de acordo, edite cada um dos seus scripts 'init' em " +"/etc/init.d, e desligue a verificação de um gestor de ecrã pré-definido." --- lightdm-1.0.1.orig/debian/patches/03_launch_dbus.patch +++ lightdm-1.0.1/debian/patches/03_launch_dbus.patch @@ -0,0 +1,18 @@ +=== modified file 'src/display.c' +Index: lightdm/src/display.c +=================================================================== +--- lightdm.orig/src/display.c 2011-10-07 11:29:03.421904737 +0200 ++++ lightdm/src/display.c 2011-10-07 11:29:11.309905037 +0200 +@@ -439,6 +439,12 @@ + g_free (wrapper); + } + } ++ else if (is_greeter) ++ { ++ gchar *t = command; ++ command = g_strdup_printf ("/usr/lib/lightdm/lightdm-greeter-session '%s'", command); ++ g_free (t); ++ } + + /* for a guest session, run command through the wrapper covered by MAC */ + if (display->priv->autologin_guest) --- lightdm-1.0.1.orig/debian/patches/02_disable_tests.patch +++ lightdm-1.0.1/debian/patches/02_disable_tests.patch @@ -0,0 +1,13 @@ +Index: lightdm/tests/Makefile.am +=================================================================== +--- lightdm.orig/tests/Makefile.am 2011-09-22 17:15:42.985827000 +1000 ++++ lightdm/tests/Makefile.am 2011-09-22 17:15:59.486475679 +1000 +@@ -63,6 +63,8 @@ + test-login-qt-guest-logout + endif + ++TESTS = ++ + EXTRA_DIST = \ + $(TESTS) \ + data/xgreeters/test-gobject-greeter.desktop \ --- lightdm-1.0.1.orig/debian/patches/07_long_password_crash.patch +++ lightdm-1.0.1/debian/patches/07_long_password_crash.patch @@ -0,0 +1,14 @@ +=== modified file 'src/greeter.c' +--- lightdm/src/greeter.c 2011-10-05 23:03:50 +0000 ++++ lightdm/src/greeter.c 2011-10-06 02:31:43 +0000 +@@ -530,7 +530,8 @@ + /* If have header, rerun for content */ + if (greeter->priv->n_read == HEADER_SIZE) + { +- n_to_read = ((guint32 *) greeter->priv->read_buffer)[1]; ++ gsize offset = int_length (); ++ n_to_read = read_int (greeter, &offset); + if (n_to_read > 0) + { + greeter->priv->read_buffer = g_realloc (greeter->priv->read_buffer, HEADER_SIZE + n_to_read); + --- lightdm-1.0.1.orig/debian/patches/00bzr_guest_session_wrapper.diff +++ lightdm-1.0.1/debian/patches/00bzr_guest_session_wrapper.diff @@ -0,0 +1,83 @@ +Description: Introduce a lightdm-guest-session-wrapper session command which MAC systems like AppArmor and SELinux can use for attaching a restrictive policy to guest sessions. +Author: Martin Pitt +Origin: Backported from trunk r1242 +Bug-Ubuntu: https://launchpad.net/bugs/849027 + +=== modified file 'src/Makefile.am' +Index: lightdm/src/Makefile.am +=================================================================== +--- lightdm.orig/src/Makefile.am 2011-10-07 11:29:02.533904703 +0200 ++++ lightdm/src/Makefile.am 2011-10-07 11:29:03.417904736 +0200 +@@ -79,6 +79,7 @@ + lightdm_CFLAGS = \ + $(LIGHTDM_CFLAGS) \ + $(WARN_CFLAGS) \ ++ -DLIBEXEC_DIR=\"$(libexecdir)\" \ + -DPKGLIBEXEC_DIR=\"$(pkglibexecdir)\" \ + -DSBIN_DIR=\"$(sbindir)\" \ + -DCONFIG_DIR=\"$(sysconfdir)/lightdm\" \ +@@ -92,6 +93,14 @@ + $(LIGHTDM_LIBS) \ + -lpam + ++libexec_PROGRAMS = lightdm-guest-session-wrapper ++ ++lightdm_guest_session_wrapper_SOURCES = lightdm-guest-session-wrapper.c ++ ++lightdm_guest_session_wrapper_CFLAGS = \ ++ $(LIGHTDM_CFLAGS) \ ++ $(WARN_CFLAGS) ++ + EXTRA_DIST = ldm-marshal.list \ + display-manager.xml + +Index: lightdm/src/display.c +=================================================================== +--- lightdm.orig/src/display.c 2011-10-07 11:29:02.557904704 +0200 ++++ lightdm/src/display.c 2011-10-07 11:29:03.421904737 +0200 +@@ -440,6 +440,15 @@ + } + } + ++ /* for a guest session, run command through the wrapper covered by MAC */ ++ if (display->priv->autologin_guest) ++ { ++ gchar *t = command; ++ command = g_strdup_printf (LIBEXEC_DIR "/lightdm-guest-session-wrapper %s", command); ++ g_debug("Guest session, running session command through wrapper: %s", command); ++ g_free (t); ++ } ++ + g_signal_emit (display, signals[CREATE_SESSION], 0, &session); + g_return_val_if_fail (session != NULL, NULL); + +Index: lightdm/src/lightdm-guest-session-wrapper.c +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ lightdm/src/lightdm-guest-session-wrapper.c 2011-10-07 11:29:03.421904737 +0200 +@@ -0,0 +1,25 @@ ++/* -*- Mode: C; indent-tabs-mode: nil; tab-width: 4 -*- ++ * ++ * Copyright (C) 2011 Canonical Ltd. ++ * Author: Martin Pitt ++ * ++ * This program is free software: you can redistribute it and/or modify it under ++ * the terms of the GNU General Public License as published by the Free Software ++ * Foundation, either version 3 of the License, or (at your option) any later ++ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the ++ * license. ++ */ ++ ++/* This is a simple wrapper which just re-execve()'s the program given as its ++ * arguments. This allows MAC systems like AppArmor or SELinux to apply a ++ * policy on this wrapper which applies to guest sessions only. */ ++ ++#include ++ ++int ++main (int argc, char *argv[], char *envp[]) ++{ ++ if (argc < 2) ++ return 1; ++ execve (argv[1], argv+1, envp); ++} --- lightdm-1.0.1.orig/debian/patches/01_transition_gnome_ubuntu_desktop.patch +++ lightdm-1.0.1/debian/patches/01_transition_gnome_ubuntu_desktop.patch @@ -0,0 +1,30 @@ +# Description: some sessions have been renamed between Natty and Oneiric. +# Make the transition happens as less intrusive as possible. +=== modified file 'liblightdm-gobject/user.c' +Index: ubuntu/liblightdm-gobject/user.c +=================================================================== +--- ubuntu.orig/liblightdm-gobject/user.c 2011-09-06 16:10:26.454205000 +0200 ++++ ubuntu/liblightdm-gobject/user.c 2011-09-06 16:12:46.528048812 +0200 +@@ -1105,6 +1105,22 @@ + priv->language = g_key_file_get_string (priv->dmrc_file, "Desktop", "Language", NULL); + priv->layout = g_key_file_get_string (priv->dmrc_file, "Desktop", "Layout", NULL); + priv->session = g_key_file_get_string (priv->dmrc_file, "Desktop", "Session", NULL); ++ ++ if (g_strcmp0 (priv->session, "gnome") == 0) ++ { ++ g_free(priv->session); ++ priv->session = g_strdup ("ubuntu"); ++ } ++ else if (g_strcmp0 (priv->session, "unity-2d") == 0) ++ { ++ g_free(priv->session); ++ priv->session = g_strdup ("ubuntu-2d"); ++ } ++ else if (g_strcmp0 (priv->session, "gnome-2d") == 0) ++ { ++ g_free(priv->session); ++ priv->session = g_strdup ("gnome-fallback"); ++ } + } + + static gchar * --- lightdm-1.0.1.orig/debian/patches/06_accounts_service_timeout.patch +++ lightdm-1.0.1/debian/patches/06_accounts_service_timeout.patch @@ -0,0 +1,85 @@ +=== modified file 'src/accounts.c' +Index: lightdm/src/accounts.c +=================================================================== +--- lightdm.orig/src/accounts.c 2011-10-06 16:16:15.067599694 +1100 ++++ lightdm/src/accounts.c 2011-10-06 16:16:34.323599026 +1100 +@@ -55,6 +55,10 @@ + + static gchar *passwd_file = NULL; + ++/* Connection to AccountsService */ ++static GDBusProxy *accounts_service_proxy = NULL; ++static gboolean have_accounts_service_proxy = FALSE; ++ + static gboolean + call_method (GDBusProxy *proxy, const gchar *method, GVariant *args, + const gchar *expected, GVariant **result) +@@ -153,6 +157,42 @@ + } + + static GDBusProxy * ++get_accounts_service_proxy () ++{ ++ GError *error = NULL; ++ ++ if (have_accounts_service_proxy) ++ return accounts_service_proxy; ++ ++ have_accounts_service_proxy = TRUE; ++ accounts_service_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM, ++ G_DBUS_PROXY_FLAGS_NONE, ++ NULL, ++ "org.freedesktop.Accounts", ++ "/org/freedesktop/Accounts", ++ "org.freedesktop.Accounts", ++ NULL, &error); ++ if (error) ++ g_warning ("Could not get accounts proxy: %s", error->message); ++ g_clear_error (&error); ++ ++ if (accounts_service_proxy) ++ { ++ gchar *name; ++ name = g_dbus_proxy_get_name_owner (accounts_service_proxy); ++ if (!name) ++ { ++ g_debug ("org.freedesktop.Accounts does not exist, falling back to passwd file"); ++ g_object_unref (accounts_service_proxy); ++ accounts_service_proxy = NULL; ++ } ++ g_free (name); ++ } ++ ++ return accounts_service_proxy; ++} ++ ++static GDBusProxy * + get_accounts_proxy_for_user (const gchar *user) + { + GDBusProxy *proxy; +@@ -163,23 +203,11 @@ + + g_return_val_if_fail (user != NULL, NULL); + +- proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM, +- G_DBUS_PROXY_FLAGS_NONE, +- NULL, +- "org.freedesktop.Accounts", +- "/org/freedesktop/Accounts", +- "org.freedesktop.Accounts", +- NULL, &error); +- if (error) +- g_warning ("Could not get accounts proxy: %s", error->message); +- g_clear_error (&error); +- ++ proxy = get_accounts_service_proxy (); + if (!proxy) + return NULL; + +- success = call_method (proxy, "FindUserByName", g_variant_new ("(s)", user), +- "(o)", &result); +- g_object_unref (proxy); ++ success = call_method (proxy, "FindUserByName", g_variant_new ("(s)", user), "(o)", &result); + + if (!success) + return NULL; --- lightdm-1.0.1.orig/debian/patches/series +++ lightdm-1.0.1/debian/patches/series @@ -0,0 +1,9 @@ +00bzr_guest_session_wrapper.diff +01_transition_gnome_ubuntu_desktop.patch +02_disable_tests.patch +03_launch_dbus.patch +04_dmrc_set_LANG_only.patch +05_gdmflexiserver_not_in_PATH.patch +06_accounts_service_timeout.patch +07_long_password_crash.patch +08_correct_ck_ref.patch --- lightdm-1.0.1.orig/debian/patches/08_correct_ck_ref.patch +++ lightdm-1.0.1/debian/patches/08_correct_ck_ref.patch @@ -0,0 +1,14 @@ +=== modified file 'src/session.c' +--- lightdm/src/session.c 2011-10-06 03:50:32 +0000 ++++ lightdm/src/session.c 2011-10-07 11:50:22 +0000 +@@ -187,7 +187,8 @@ + g_return_if_fail (session != NULL); + g_return_if_fail (name != NULL); + +- g_hash_table_insert (session->priv->console_kit_parameters, g_strdup (name), value); ++ g_hash_table_insert (session->priv->console_kit_parameters, ++ g_strdup (name), g_variant_ref_sink (value)); + } + + const gchar * + --- lightdm-1.0.1.orig/debian/patches/04_dmrc_set_LANG_only.patch +++ lightdm-1.0.1/debian/patches/04_dmrc_set_LANG_only.patch @@ -0,0 +1,229 @@ +=== modified file 'lightdm/src/accounts.c' +Index: lightdm/src/accounts.c +=================================================================== +--- lightdm.orig/src/accounts.c 2011-09-22 17:15:42.985827000 +1000 ++++ lightdm/src/accounts.c 2011-10-06 15:48:20.463657673 +1100 +@@ -44,6 +44,9 @@ + /* Language */ + gchar *language; + ++ /* Locale */ ++ gchar *locale; ++ + /* X session */ + gchar *xsession; + }; +@@ -399,15 +402,6 @@ + return user->priv->shell; + } + +-void +-user_set_language (User *user, const gchar *language) +-{ +- g_return_if_fail (user != NULL); +- +- call_method (user->priv->proxy, "SetLanguage", g_variant_new ("(s)", language), "()", NULL); +- save_string_to_dmrc (user->priv->name, "Desktop", "Language", language); +-} +- + const gchar * + user_get_language (User *user) + { +@@ -416,14 +410,15 @@ + g_return_val_if_fail (user != NULL, NULL); + + g_free (user->priv->language); +- + if (get_property (user->priv->proxy, "Language", "s", &result)) + { + g_variant_get (result, "s", &user->priv->language); + g_variant_unref (result); + } + else +- user->priv->language = get_string_from_dmrc (user->priv->name, "Desktop", "Language"); ++ { ++ user->priv->language = NULL; ++ } + + if (g_strcmp0 (user->priv->language, "") == 0) + { +@@ -434,6 +429,35 @@ + return user->priv->language; + } + ++const gchar * ++user_get_locale (User *user) ++{ ++ g_return_val_if_fail (user != NULL, NULL); ++ ++ g_free (user->priv->locale); ++ if (user->priv->proxy) ++ user->priv->locale = NULL; ++ else ++ user->priv->locale = get_string_from_dmrc (user->priv->name, "Desktop", "Language"); ++ ++ /* Treat a blank locale as unset */ ++ if (g_strcmp0 (user->priv->locale, "") == 0) ++ { ++ g_free (user->priv->locale); ++ user->priv->locale = NULL; ++ } ++ ++ return user->priv->locale; ++} ++ ++void ++user_set_locale (User *user, const gchar *locale) ++{ ++ g_return_if_fail (user != NULL); ++ if (!user->priv->proxy) ++ save_string_to_dmrc (user->priv->name, "Desktop", "Language", locale); ++} ++ + void + user_set_xsession (User *user, const gchar *xsession) + { +@@ -482,7 +506,8 @@ + + self = USER (object); + +- if (self->priv->proxy) { ++ if (self->priv->proxy) ++ { + g_object_unref (self->priv->proxy); + self->priv->proxy = NULL; + } +Index: lightdm/src/accounts.h +=================================================================== +--- lightdm.orig/src/accounts.h 2011-09-22 17:15:42.000000000 +1000 ++++ lightdm/src/accounts.h 2011-10-06 15:48:20.463657673 +1100 +@@ -64,7 +64,9 @@ + + const gchar *user_get_language (User *user); + +-void user_set_language (User *user, const gchar *language); ++const gchar *user_get_locale (User *user); ++ ++void user_set_locale (User *user, const gchar *language); + + G_END_DECLS + +Index: lightdm/src/greeter.c +=================================================================== +--- lightdm.orig/src/greeter.c 2011-09-22 17:15:42.000000000 +1000 ++++ lightdm/src/greeter.c 2011-10-06 15:48:20.463657673 +1100 +@@ -442,7 +442,7 @@ + + g_debug ("Greeter sets language %s", language); + user = pam_session_get_user (greeter->priv->authentication); +- user_set_language (user, language); ++ user_set_locale (user, language); + } + + static guint32 +Index: lightdm/src/session.c +=================================================================== +--- lightdm.orig/src/session.c 2011-10-04 19:58:24.000000000 +1100 ++++ lightdm/src/session.c 2011-10-06 15:48:20.463657673 +1100 +@@ -192,82 +192,23 @@ + return session->priv->console_kit_cookie; + } + +-/* Set the LANG variable based on the chosen language. This is not a great +- * solution, as it will override the language set in PAM (which is where it +- * should be set). It's also overly simplistic to set all the locale +- * settings based on one language. In the case of Ubuntu these will be +- * overridden by setting these variables in ~/.profile */ ++/* Set the LANG variable based on the chosen locale. This is not a great ++ * solution, as it will override the locale set in PAM (which is where it ++ * should be set). In the case of Ubuntu these will be overridden by setting ++ * these variables in ~/.profile */ + static void +-set_language (Session *session) ++set_locale (Session *session) + { + User *user; +- const gchar *language; +- gchar *language_dot; +- gboolean result; +- gchar *stdout_text = NULL; +- int exit_status; +- GError *error = NULL; ++ const gchar *locale; + + user = pam_session_get_user (session->priv->authentication); +- language = user_get_language (user); +- if (!language || language[0] == '\0') +- return; +- +- language_dot = g_strdup_printf ("%s.", language); +- +- /* Find a locale that matches the language code */ +- result = g_spawn_command_line_sync ("locale -a", &stdout_text, NULL, &exit_status, &error); +- if (error) +- { +- g_warning ("Failed to run 'locale -a': %s", error->message); +- g_clear_error (&error); +- } +- else if (exit_status != 0) +- g_warning ("Failed to get languages, locale -a returned %d", exit_status); +- else if (result) ++ locale = user_get_locale (user); ++ if (locale) + { +- gchar **tokens, *matched_code = NULL; +- int i; +- +- tokens = g_strsplit_set (stdout_text, "\n\r", -1); +- +- /* Look for a locale with an encoding */ +- for (i = 0; tokens[i]; i++) +- { +- gchar *code = g_strchug (tokens[i]); +- if (g_str_has_prefix (code, language_dot)) +- { +- matched_code = code; +- break; +- } +- } +- +- /* Fall back to a locale without an encoding */ +- if (!matched_code) +- { +- for (i = 0; tokens[i]; i++) +- { +- gchar *code = g_strchug (tokens[i]); +- if (strcmp (code, language) == 0) +- { +- matched_code = code; +- break; +- } +- } +- } +- +- if (matched_code) +- { +- g_debug ("Using locale %s for language %s", matched_code, language); +- session_set_env (session, "LANG", matched_code); +- } +- else +- g_debug ("Failed to find locale for language %s", language); +- +- g_strfreev (tokens); ++ g_debug ("Using locale %s", locale); ++ session_set_env (session, "LANG", locale); + } +- g_free (language_dot); +- g_free (stdout_text); + } + + gboolean +@@ -471,7 +412,7 @@ + /* Do PAM actions requiring session process */ + pam_session_setup (session->priv->authentication); + set_env_from_authentication (session, session->priv->authentication); +- set_language (session); ++ set_locale (session); + + PROCESS_CLASS (session_parent_class)->run (process); + } --- lightdm-1.0.1.orig/debian/patches/05_gdmflexiserver_not_in_PATH.patch +++ lightdm-1.0.1/debian/patches/05_gdmflexiserver_not_in_PATH.patch @@ -0,0 +1,67 @@ +Index: lightdm/src/session.c +=================================================================== +--- lightdm.orig/src/session.c 2011-10-06 15:48:20.463657673 +1100 ++++ lightdm/src/session.c 2011-10-06 15:49:55.635654379 +1100 +@@ -211,6 +211,26 @@ + } + } + ++/* Insert our own utility directory to PATH ++ * This is to provide gdmflexiserver which provides backwards compatibility ++ * with GDM. ++ * Must be done after set_env_from_authentication because PAM sets PATH. ++ * This can be removed when this is no longer required. ++ */ ++static void ++insert_utility_path (Session *session) ++{ ++ const gchar *orig_path; ++ ++ orig_path = session_get_env (session, "PATH"); ++ if (orig_path) ++ { ++ gchar *path = g_strdup_printf ("%s:%s", PKGLIBEXEC_DIR, orig_path); ++ session_set_env (session, "PATH", path); ++ g_free (path); ++ } ++} ++ + gboolean + session_start (Session *session) + { +@@ -237,7 +257,6 @@ + { + gboolean result; + gchar *absolute_command; +- const gchar *orig_path; + + absolute_command = get_absolute_command (session->priv->command); + if (!absolute_command) +@@ -248,19 +267,6 @@ + process_set_command (PROCESS (session), absolute_command); + g_free (absolute_command); + +- /* Insert our own utility directory to PATH +- * This is to provide gdmflexiserver which provides backwards compatibility with GDM. +- * Must be done after set_env_from_authentication because that often sets PATH. +- * This can be removed when this is no longer required. +- */ +- orig_path = session_get_env (session, "PATH"); +- if (orig_path) +- { +- gchar *path = g_strdup_printf ("%s:%s", PKGLIBEXEC_DIR, orig_path); +- session_set_env (session, "PATH", path); +- g_free (path); +- } +- + pam_session_open (session->priv->authentication); + + /* Open ConsoleKit session */ +@@ -413,6 +419,7 @@ + pam_session_setup (session->priv->authentication); + set_env_from_authentication (session, session->priv->authentication); + set_locale (session); ++ insert_utility_path (session); + + PROCESS_CLASS (session_parent_class)->run (process); + }